/**
SXR0aXAkI0JwbXptI3FhI3Z3I293bCNqY2IjUG0jMCNicG0jVHFkcXZvLyNCcG0jQW10bjBhY2phcWFicXZvLyNNYm16dml0MSNWdyNhdGN1am16I2tpdiNhbXF9bSNQcXUjVnd6I0F0bW14MSNQcWEjaXptI2l0dCNicHF2b2EjUXYjYnBtI3BtaWRtdmEjaXZsI3d2I21pemJwMSNFcHcjcWEjYnBtem0ja2l2I3F2Ym16a21sbSNRdiNQcWEjeHptYW12a20jbXtrbXhiI0lhI3BtI3htenVxYmJtYnBHI1BtI3N2d2VtYnAjRXBpYiMraXh4bWl6bWJwI2J3I1BxYSNrem1pYmN6bWEjSWEsI0ptbnd6bSN3eiNJbmJteiN3eiNKbXBxdmwjYnBtdTEjVnd6I2FwaXR0I2JwbXwja3d1eGlhYSNJY29wYiN3biNwcWEjc3Z3ZXRtbG9tI017a214YiNpYSNQbSNlcXR0bWJwMSNQcWEjYnB6d3ZtI2x3YnAjbXtibXZsI1dkbXojYnBtI3BtaWRtdmEjSXZsI3d2I21pemJwLyNpdmwjUG0jbm1tdG1icCNWdyNuaWJxb2NtI3F2I29jaXpscXZvI0l2bCN4em1hbXpkcXZvI2JwbXUvI053eiNQbSNxYSNicG0jVXdhYiNQcW9wMSNCcG0jQWN4em11bSMrcXYjb3R3enwsMQ==
*/
#include <bits/stdc++.h>
#define F first
#define S second
#define endl '\n'
#define pb push_back
const long long MOD = 1e9 + 7;
const long long MAXN = 1e6 + 1;
using namespace std;
typedef long long ll;
long long readInt() {
bool minus1 = false;
long long result = 0;
char ch;
ch = getchar();
while (true) {
if (ch == '-') break;
if (ch >= '0' && ch <= '9') break;
ch = getchar();
}
if (ch == '-') minus1 = true; else result = ch-'0';
while (true) {
ch = getchar();
if (ch < '0' || ch > '9') break;
result = result*10 + (ch - '0');
}
if (minus1)
return -result;
else
return result;
}
int n, k;
pair <pair <int, int> ,pair <int, int> > a[MAXN];
int check(int v) {
int kvad = v * v;
int kolvo_1 = (n/v) / 2;
int kolvo_2 = ((n/v)+1) / 2;
int ans_1 = kvad * (kolvo_1 * kolvo_1 + kolvo_2 * kolvo_2); /// BLACK First
int ans_2 = kvad * (kolvo_1 * kolvo_2 + kolvo_2 * kolvo_1); /// WHITE First
for (int i = 1; i <= k; i++) {
int x = a[i].first.first;
int y = a[i].first.second;
int num_x = (x + v - 1) / v;
int num_y = (y + v - 1) / v;
if ((num_x + num_y) % 2 == 0) {
ans_1 --;
ans_2 ++;
} else {
ans_1 ++;
ans_2 --;
}
}
return min(ans_1, ans_2);
}
int main() {
#ifdef IZI_KATKA
assert(freopen("input", "r", stdin));
assert(freopen("output", "w", stdout));
#endif
n = readInt(), k = readInt();
for (int i = 1; i <= k; i++) {
a[i] = {{readInt(), readInt()}, {readInt(), readInt()}};
}
check(1);
int ans = 1e9;
ans = min(check(1), ans);
for (int i = 2; i * i <= n; i++) {
if (n % i == 0) {
ans = min(ans, check(i));
ans = min(ans, check(n/i));
}
}
cout << ans;
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Correct |
2 ms |
376 KB |
Output is correct |
3 |
Correct |
1 ms |
408 KB |
Output is correct |
4 |
Correct |
2 ms |
408 KB |
Output is correct |
5 |
Correct |
2 ms |
460 KB |
Output is correct |
6 |
Correct |
2 ms |
460 KB |
Output is correct |
7 |
Correct |
2 ms |
460 KB |
Output is correct |
8 |
Correct |
1 ms |
476 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
17 ms |
1412 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
1412 KB |
Output is correct |
2 |
Correct |
1 ms |
1412 KB |
Output is correct |
3 |
Correct |
1 ms |
1412 KB |
Output is correct |
4 |
Correct |
2 ms |
1412 KB |
Output is correct |
5 |
Correct |
1 ms |
1412 KB |
Output is correct |
6 |
Correct |
2 ms |
1412 KB |
Output is correct |
7 |
Correct |
2 ms |
1412 KB |
Output is correct |
8 |
Correct |
1 ms |
1412 KB |
Output is correct |
9 |
Correct |
2 ms |
1412 KB |
Output is correct |
10 |
Correct |
1 ms |
1412 KB |
Output is correct |
11 |
Correct |
1 ms |
1412 KB |
Output is correct |
12 |
Correct |
2 ms |
1412 KB |
Output is correct |
13 |
Correct |
2 ms |
1412 KB |
Output is correct |
14 |
Correct |
2 ms |
1412 KB |
Output is correct |
15 |
Correct |
2 ms |
1412 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
1412 KB |
Output is correct |
2 |
Correct |
1 ms |
1412 KB |
Output is correct |
3 |
Correct |
1 ms |
1412 KB |
Output is correct |
4 |
Correct |
2 ms |
1412 KB |
Output is correct |
5 |
Correct |
1 ms |
1412 KB |
Output is correct |
6 |
Correct |
2 ms |
1412 KB |
Output is correct |
7 |
Correct |
2 ms |
1412 KB |
Output is correct |
8 |
Correct |
1 ms |
1412 KB |
Output is correct |
9 |
Correct |
2 ms |
1412 KB |
Output is correct |
10 |
Correct |
1 ms |
1412 KB |
Output is correct |
11 |
Correct |
1 ms |
1412 KB |
Output is correct |
12 |
Correct |
2 ms |
1412 KB |
Output is correct |
13 |
Correct |
2 ms |
1412 KB |
Output is correct |
14 |
Correct |
2 ms |
1412 KB |
Output is correct |
15 |
Correct |
2 ms |
1412 KB |
Output is correct |
16 |
Correct |
7 ms |
1496 KB |
Output is correct |
17 |
Correct |
17 ms |
3752 KB |
Output is correct |
18 |
Correct |
23 ms |
5628 KB |
Output is correct |
19 |
Correct |
61 ms |
6844 KB |
Output is correct |
20 |
Correct |
67 ms |
8656 KB |
Output is correct |
21 |
Correct |
21 ms |
9740 KB |
Output is correct |
22 |
Correct |
2 ms |
9740 KB |
Output is correct |
23 |
Correct |
15 ms |
9784 KB |
Output is correct |
24 |
Correct |
23 ms |
12008 KB |
Output is correct |
25 |
Correct |
6 ms |
12008 KB |
Output is correct |
26 |
Correct |
21 ms |
12584 KB |
Output is correct |
27 |
Correct |
23 ms |
13756 KB |
Output is correct |
28 |
Correct |
25 ms |
15752 KB |
Output is correct |
29 |
Correct |
10 ms |
15752 KB |
Output is correct |
30 |
Correct |
3 ms |
15752 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
17 ms |
1412 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Correct |
2 ms |
376 KB |
Output is correct |
3 |
Correct |
1 ms |
408 KB |
Output is correct |
4 |
Correct |
2 ms |
408 KB |
Output is correct |
5 |
Correct |
2 ms |
460 KB |
Output is correct |
6 |
Correct |
2 ms |
460 KB |
Output is correct |
7 |
Correct |
2 ms |
460 KB |
Output is correct |
8 |
Correct |
1 ms |
476 KB |
Output is correct |
9 |
Incorrect |
17 ms |
1412 KB |
Output isn't correct |
10 |
Halted |
0 ms |
0 KB |
- |