# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
946401 |
2024-03-14T15:56:58 Z |
n3rm1n |
Gap (APIO16_gap) |
C++17 |
|
31 ms |
4000 KB |
/// gap
#include<bits/stdc++.h>
#include "gap.h"
using namespace std;
long long findGap(int T, int N)
{
long long s = 0, t = 1e18;
long long mn, mx;
vector < long long > fh, sh;
while(mn < mx)
{
MinMax(s, t, &mn, &mx);
if(mn == -1)break;
if(mn == mx)
{
fh.push_back(mn);
break;
}
if(mn > mx)break;
fh.push_back(mn);
sh.push_back(mx);
s = mn + 1;
t = mx - 1;
}
long long ans = 0;
for (int i = 1; i < fh.size(); ++ i)
ans = max(ans, fh[i] - fh[i-1]);
ans = max(ans, sh[0] - fh.back());
for (int i = 1; i < sh.size(); ++ i)
ans = max(ans, sh[i] - sh[i-1]);
return ans;
}
Compilation message
gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:28:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
28 | for (int i = 1; i < fh.size(); ++ i)
| ~~^~~~~~~~~~~
gap.cpp:31:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
31 | for (int i = 1; i < sh.size(); ++ i)
| ~~^~~~~~~~~~~
gap.cpp:12:11: warning: 'mn' is used uninitialized in this function [-Wuninitialized]
12 | while(mn < mx)
| ~~~^~~~
gap.cpp:12:11: warning: 'mx' is used uninitialized in this function [-Wuninitialized]
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Incorrect |
0 ms |
2392 KB |
Output isn't correct |
3 |
Incorrect |
0 ms |
2392 KB |
Output isn't correct |
4 |
Incorrect |
0 ms |
2644 KB |
Output isn't correct |
5 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
6 |
Incorrect |
0 ms |
2392 KB |
Output isn't correct |
7 |
Incorrect |
0 ms |
2392 KB |
Output isn't correct |
8 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
9 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
10 |
Runtime error |
1 ms |
2392 KB |
Execution failed because the return code was nonzero |
11 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
12 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
13 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
14 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
15 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
16 |
Incorrect |
7 ms |
2844 KB |
Output isn't correct |
17 |
Incorrect |
7 ms |
2844 KB |
Output isn't correct |
18 |
Incorrect |
8 ms |
2804 KB |
Output isn't correct |
19 |
Incorrect |
7 ms |
2840 KB |
Output isn't correct |
20 |
Runtime error |
6 ms |
2828 KB |
Execution failed because the return code was nonzero |
21 |
Incorrect |
28 ms |
3668 KB |
Output isn't correct |
22 |
Incorrect |
29 ms |
3660 KB |
Output isn't correct |
23 |
Incorrect |
28 ms |
3660 KB |
Output isn't correct |
24 |
Incorrect |
29 ms |
3948 KB |
Output isn't correct |
25 |
Incorrect |
31 ms |
3604 KB |
Output isn't correct |
26 |
Incorrect |
28 ms |
3656 KB |
Output isn't correct |
27 |
Incorrect |
28 ms |
3656 KB |
Output isn't correct |
28 |
Incorrect |
29 ms |
3664 KB |
Output isn't correct |
29 |
Incorrect |
28 ms |
3912 KB |
Output isn't correct |
30 |
Runtime error |
24 ms |
3868 KB |
Execution failed because the return code was nonzero |
31 |
Runtime error |
1 ms |
2392 KB |
Execution failed because the return code was nonzero |
32 |
Runtime error |
0 ms |
2392 KB |
Execution failed because the return code was nonzero |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
2392 KB |
Output is correct |
2 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
3 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
4 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
5 |
Incorrect |
0 ms |
2392 KB |
Output isn't correct |
6 |
Incorrect |
0 ms |
2392 KB |
Output isn't correct |
7 |
Incorrect |
0 ms |
2392 KB |
Output isn't correct |
8 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
9 |
Incorrect |
0 ms |
2392 KB |
Output isn't correct |
10 |
Runtime error |
0 ms |
2392 KB |
Execution failed because the return code was nonzero |
11 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
12 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
13 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
14 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
15 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
16 |
Incorrect |
7 ms |
2840 KB |
Output isn't correct |
17 |
Incorrect |
7 ms |
3008 KB |
Output isn't correct |
18 |
Incorrect |
7 ms |
2840 KB |
Output isn't correct |
19 |
Incorrect |
7 ms |
2840 KB |
Output isn't correct |
20 |
Runtime error |
6 ms |
2828 KB |
Execution failed because the return code was nonzero |
21 |
Incorrect |
30 ms |
3692 KB |
Expected int32, but "2500100001" found |
22 |
Incorrect |
29 ms |
4000 KB |
Expected int32, but "2500100001" found |
23 |
Incorrect |
31 ms |
3664 KB |
Expected int32, but "2500100001" found |
24 |
Incorrect |
28 ms |
3660 KB |
Expected int32, but "2500100001" found |
25 |
Incorrect |
25 ms |
3748 KB |
Expected int32, but "2500100001" found |
26 |
Incorrect |
28 ms |
3668 KB |
Expected int32, but "2500100001" found |
27 |
Incorrect |
28 ms |
3676 KB |
Expected int32, but "2500100001" found |
28 |
Incorrect |
28 ms |
3668 KB |
Expected int32, but "2500100001" found |
29 |
Incorrect |
29 ms |
3676 KB |
Expected int32, but "2500100001" found |
30 |
Runtime error |
23 ms |
3664 KB |
Execution failed because the return code was nonzero |
31 |
Runtime error |
1 ms |
2392 KB |
Execution failed because the return code was nonzero |
32 |
Runtime error |
0 ms |
2392 KB |
Execution failed because the return code was nonzero |