이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "gap.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ld long double
#define pb push_back
#define fi first
#define se second
#define debug(x) cout << #x << " => " << x << "\n";
ll t, n, ans;
ll l, r, mn, mx, x;
vector <ll> vect;
ll T1() {
l = 0, r = 1e18;
while(vect.size() < n) {
MinMax(l, r, &mn, &mx);
vect.pb(mn);
if(mn != mx) vect.pb(mx);
l = mn + 1;
r = mx - 1;
}
sort(vect.begin(), vect.end());
for(int i = 0; i < vect.size() - 1; i++)
ans = max(ans, vect[i + 1] - vect[i]);
return ans;
}
ll T2() {
MinMax(0, 1e18, &l, &r);
x = (r - l + n) / n;
for(; l <= r; l += x) {
MinMax(l, l + x - 1, &mn, &mx);
if(mn != -1) vect.pb(mn);
if(mn != mx && mx != -1) vect.pb(mx);
}
sort(vect.begin(), vect.end());
for(int i = 0; i < vect.size() - 1; i++)
ans = max(ans, vect[i + 1] - vect[i]);
return ans;
}
ll findGap(int T, int N) {
t = T, n = N;
if(t == 1) return T1();
else return T2();
}
컴파일 시 표준 에러 (stderr) 메시지
gap.cpp: In function 'long long int T1()':
gap.cpp:19:23: warning: comparison of integer expressions of different signedness: 'std::vector<long long int>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
19 | while(vect.size() < n) {
| ~~~~~~~~~~~~^~~
gap.cpp:27:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
27 | for(int i = 0; i < vect.size() - 1; i++)
| ~~^~~~~~~~~~~~~~~~~
gap.cpp:27:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
27 | for(int i = 0; i < vect.size() - 1; i++)
| ^~~
gap.cpp:29:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
29 | return ans;
| ^~~~~~
gap.cpp: In function 'long long int T2()':
gap.cpp:41:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
41 | for(int i = 0; i < vect.size() - 1; i++)
| ~~^~~~~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |