Skip to content

Commit ddf04ce

Browse files
committed
algo
1 parent 5bd7575 commit ddf04ce

File tree

145 files changed

+302
-61782
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

145 files changed

+302
-61782
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
kmong
1+
kmong
2+
*.out
3+
*.exe

.vscode/settings.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
"queue": "cpp",
55
"xiosbase": "cpp",
66
"vector": "cpp",
7-
"random": "cpp"
7+
"random": "cpp",
8+
"map": "cpp",
9+
"unordered_map": "cpp"
810
},
911
"code-runner.executorMap": {
1012
"c": "cd $dirWithoutTrailingSlash gcc $fileName -g -o $fileNameWithoutExt && ./$fileNameWithoutExt.exe",

atcoder/a.out

-8.57 KB
Binary file not shown.

bj/a.exe

-85.5 KB
Binary file not shown.

bj/a.out

-23.6 KB
Binary file not shown.

bj/p1000/10227.exe

-62 KB
Binary file not shown.

bj/p1000/10875.exe

-118 KB
Binary file not shown.

bj/p1000/15991.out

-41.9 KB
Binary file not shown.

bj/p1000/17143.exe

-103 KB
Binary file not shown.

bj/p1000/1933.exe

-235 KB
Binary file not shown.

bj/p1000/2164.exe

-68.7 KB
Binary file not shown.

bj/p1000/2591.exe

-41.4 KB
Binary file not shown.

bj/p1000/2705.exe

-61.3 KB
Binary file not shown.

bj/p1000/2792.exe

-141 KB
Binary file not shown.

bj/p1000/3012.exe

-61.2 KB
Binary file not shown.

bj/p1000/3054.exe

-60.8 KB
Binary file not shown.

bj/p1000/3187.exe

-62.8 KB
Binary file not shown.

bj/p1000/a.exe

-79.9 KB
Binary file not shown.

bj/p1000/a.out

-60.4 KB
Binary file not shown.

bj/p1000/b.out

-9.11 KB
Binary file not shown.

bj/p1000/out.out

-4
This file was deleted.

bj/p1000/test.exe

-140 KB
Binary file not shown.

cf/283div2/a.exe

-92.4 KB
Binary file not shown.

cf/369div2/a.exe

-48.2 KB
Binary file not shown.

cf/545div2/a.out

-36.6 KB
Binary file not shown.

cf/547div3/a.out

-8.58 KB
Binary file not shown.

cf/548div2/a.out

-22.2 KB
Binary file not shown.

cf/550div3/a.out

-8.61 KB
Binary file not shown.

cf/551div2/a.exe

-69 KB
Binary file not shown.

cf/552div3/a.out

-20.2 KB
Binary file not shown.

cf/555div3/a.out

-32.5 KB
Binary file not shown.

cf/555div3/ou.out

Whitespace-only changes.

cf/555div3/out.out

Whitespace-only changes.

cf/578div2/a.exe

-85.8 KB
Binary file not shown.

cf/579div3/a.exe

-48.7 KB
Binary file not shown.

cf/579div3/out.exe

-44.3 KB
Binary file not shown.

cf/580div2/a.exe

-47.6 KB
Binary file not shown.

cf/582div3/a.exe

-116 KB
Binary file not shown.

cf/582div3/out.out

-94 Bytes
Binary file not shown.

cf/585div2/a.exe

-44.2 KB
Binary file not shown.

cf/589div2/a.exe

-45.3 KB
Binary file not shown.

cf/595div3/a.exe

-123 KB
Binary file not shown.

cf/598div3/a.exe

-69.5 KB
Binary file not shown.

cf/601div2/a.exe

-87.2 KB
Binary file not shown.

cf/614div2/a.exe

-46.8 KB
Binary file not shown.

cf/614div2/c.exe

-75.8 KB
Binary file not shown.

cf/772div2/a.out

-84.7 KB
Binary file not shown.

cf/777div2/a.out

-102 KB
Binary file not shown.

cf/779div2/a.out

-54.8 KB
Binary file not shown.

cf/779div2/out.out

-6
This file was deleted.

cf/780div3/a.out

-61.6 KB
Binary file not shown.

cf/780div3/out.out

-6
This file was deleted.

cf/784div4/a.out

-68.1 KB
Binary file not shown.

cf/784div4/out.out

-5
This file was deleted.

cf/821div2/a.out

-54.6 KB
Binary file not shown.

cf/821div2/out.out

-72
This file was deleted.

cf/974div3/a.cc

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#include <bits/stdc++.h>
2+
using ll = long long;
3+
using namespace std;
4+
5+
int main ()
6+
{
7+
ios::sync_with_stdio(false);
8+
cin.tie(0);
9+
cout.tie(0);
10+
11+
int t;
12+
cin >> t;
13+
while(t--) {
14+
int n, k;
15+
cin >> n >> k;
16+
int cur = 0;
17+
int ans = 0;
18+
19+
int tmp;
20+
for (int i=0; i<n; i++){
21+
cin>> tmp;
22+
if (tmp == 0) {
23+
if (cur > 0) ans++, cur--;
24+
}
25+
else if (tmp >= k) cur += tmp;
26+
}
27+
28+
cout << ans <<"\n";
29+
}
30+
}

cf/974div3/b.cc

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#include <bits/stdc++.h>
2+
using ll = long long;
3+
using namespace std;
4+
5+
void gg(bool g){
6+
string result = g?"NO":"YES";
7+
cout << result << "\n";
8+
}
9+
10+
int main ()
11+
{
12+
ios::sync_with_stdio(false);
13+
cin.tie(0);
14+
cout.tie(0);
15+
16+
int t;
17+
cin >> t;
18+
while(t--){
19+
int n, k;
20+
cin >> n >> k;
21+
22+
bool result = (((ll)n - k + 1 + n) * k / 2)%2;
23+
gg(result);
24+
}
25+
}

cf/974div3/c.cc

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
#include <bits/stdc++.h>
2+
using ll = long long;
3+
using namespace std;
4+
5+
int main ()
6+
{
7+
ios::sync_with_stdio(false);
8+
cin.tie(0);
9+
cout.tie(0);
10+
11+
int t;
12+
cin >> t;
13+
14+
while(t--) {
15+
int n;
16+
cin >> n;
17+
ll sum = 0;
18+
vector<int> v(n);
19+
for (int i=0; i<n; i++){
20+
cin >> v[i];
21+
sum += v[i];
22+
}
23+
if (n <= 2) {
24+
cout << "-1\n";
25+
continue;
26+
}
27+
28+
sort(v.begin(), v.end());
29+
int target = v[v.size()/2];
30+
31+
ll ans = ((ll)target) * v.size() * 2 - sum + 1;
32+
cout << max(ans,0LL) << "\n";
33+
}
34+
}

cf/974div3/d.cc

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#include <bits/stdc++.h>
2+
using ll = long long;
3+
using namespace std;
4+
5+
int main ()
6+
{
7+
ios::sync_with_stdio(false);
8+
cin.tie(0);
9+
cout.tie(0);
10+
int t;
11+
cin >>t;
12+
while(t--){
13+
int n, d, k;
14+
cin >> n >> d >> k;
15+
vector<int> v(n, 0);
16+
for (int i=0; i<k; i++){
17+
18+
}
19+
20+
}
21+
22+
}

cf/975div2/a.cc

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#include <bits/stdc++.h>
2+
using ll = long long;
3+
using namespace std;
4+
5+
int main ()
6+
{
7+
ios::sync_with_stdio(false);
8+
cin.tie(0);
9+
cout.tie(0);
10+
11+
int t;
12+
cin >> t;
13+
while(t--) {
14+
int n;
15+
cin >> n;
16+
17+
vector<pair<int, int>> v(n, {0, 0});
18+
for (int i=0; i<n; i++) {
19+
cin >> v[i].first;
20+
v[i].second = i;
21+
}
22+
23+
sort(v.begin(), v.end());
24+
int mx = 0;
25+
for (int i=0; i<n; i++) {
26+
int b = v[i].second;
27+
if (b%2 == 0) {
28+
b = v.size()/2 + v.size()%2;
29+
} else {
30+
b = v.size()/2;
31+
}
32+
33+
mx = max(v[i].first +b, mx);
34+
}
35+
cout << mx <<"\n";
36+
}
37+
}

cf/975div2/b.cc

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
#include <bits/stdc++.h>
2+
using ll = long long;
3+
using namespace std;
4+
5+
int main ()
6+
{
7+
ios::sync_with_stdio(false);
8+
cin.tie(0);
9+
cout.tie(0);
10+
11+
int t;
12+
cin >> t;
13+
14+
while(t--) {
15+
int n, k;
16+
cin >> n >> k;
17+
18+
vector<int> v(n + 1, 0);
19+
for (int i=1; i<=n; i++)
20+
cin >>v[i];
21+
22+
map<ll, ll> answer;
23+
24+
for (int i=2; i<=n-1; i++) {
25+
ll lines = ((ll)(n-i)+(n-1))*i/2 - ((ll)i-2)*(i-1)/2;
26+
ll edges = lines - (i - 1);
27+
if (answer.find(lines) == answer.end()) {
28+
answer[lines] = 1;
29+
}
30+
else answer[lines] += 1;
31+
32+
if (answer.find(edges) == answer.end()) {
33+
answer[edges] = v[i+1] - v[i] - 1;
34+
}
35+
else answer[edges] += v[i+1] - v[i] - 1;
36+
}
37+
38+
if (answer.find(n-1) == answer.end()) {
39+
answer[n-1]=2;
40+
} else answer[n-1] += 2;
41+
if (answer.find(n-1) == answer.end()) {
42+
answer[n-1] = v[2] - v[1] - 1;
43+
} else answer[n-1] += v[2] - v[1] - 1;
44+
45+
while(k--) {
46+
ll q;
47+
cin >> q;
48+
cout << answer[q] << " ";
49+
}
50+
51+
cout <<"\n";
52+
}
53+
54+
}

cf/975div2/c.cc

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#include <bits/stdc++.h>
2+
using ll = long long;
3+
using namespace std;
4+
5+
int main ()
6+
{
7+
ios::sync_with_stdio(false);
8+
cin.tie(0);
9+
cout.tie(0);
10+
11+
}

cf/975div2/in.in

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2
2+
20 19
3+
1036370 22473451 79230551 139333746 144115906 185036320 187837957 249593060 267686123 279814798 303681898 359821500 380577688 512717335 704690515 787940420 824884309 855699669 934336409 951358495
4+
103 944115487995523977 3 151 299639181507540320 109 43 158 67 67 161 69 9 36 130 64 125 41 7
5+
19 19
6+
77675059 97302260 104809111 128683816 160333178 162981920 292965088 416756518 418390138 485874392 543549598 553531805 584454355 674978055 678153322 687778799 716844739 928070184 975461629

0 commit comments

Comments
 (0)