제출 #22006

#제출 시각아이디문제언어결과실행 시간메모리
22006HiasatGap (APIO16_gap)C++14
46.86 / 100
99 ms8308 KiB
#include "gap.h" #include <bits/stdc++.h> using namespace std; typedef long long ll; vector<ll> v; long long findGap(int T, int N) { ll mx = 0; if(T == 2){ ll cur = 1; ll lo,hi; MinMax(1, 1e18, &lo, &hi); v.push_back(lo); v.push_back(hi); ll big = hi; ll sure = (hi-lo)/N; while(cur < big){ MinMax(cur, cur+sure, &lo, &hi); if(lo == -1){ cur = cur + sure; continue; } v.push_back(lo); v.push_back(hi); cur = hi + 1; } sort(v.begin(),v.end()); for (int i = 0; i + 1 < v.size(); ++i){ mx = max(mx,abs(v[i]-v[i+1])); } } return mx; }

컴파일 시 표준 에러 (stderr) 메시지

gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:32:25: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int i = 0; i + 1 < v.size(); ++i){
                         ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...