이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "gap.h"
#include<bits/stdc++.h>
using namespace std;
stack<long long> st;
vector<long long> arr;
long long findGap(int T, int N)
{
long long ans=LLONG_MAX;
long long mn=0,mx=1e18+1;
while(mn!=mx){
MinMax(mn+1,mx-1,&mn,&mx);
if(mn==-1) break;
arr.push_back(mn);
st.push(mx);
}
while(!st.empty()) arr.push_back(st.top()),st.pop();
for(int i=0;i<N-1;i++){
ans=min(ans,arr[i+1]-arr[i]);
}
//for(int i=0;i<N;i++) cout<<arr[i] <<" ";
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |