# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
165537 | 2019-11-27T12:09:59 Z | muhi1112 | Cipele (COCI18_cipele) | C++17 | 1000 ms | 2668 KB |
#include <bits/stdc++.h> using namespace std; #define endl '\n' #define f1 first #define s2 second #define pb push_back #define mp make_pair #define ll long long #define fri(a) freopen(a,"r",stdin); #define fro(a) freopen(a,"w",stdout); const int N=405; ll n,m,a,ans; vector<ll>l,r; int main(){ //fri("in.txt"); //fro("out.txt"); cin>>n>>m; for(int i=0;i<n;i++){ scanf("%d",&a); l.pb(a); } for(int i=0;i<m;i++){ scanf("%d",&a); r.pb(a); } sort(l.begin(),l.end()); sort(r.begin(),r.end()); if(n<m){ for(int i=0;i<n;i++){ auto j=lower_bound(r.begin(),r.end(),l[i]); if(j==r.end())j--; if(j>r.begin() && abs(*j-l[i])>abs(*(j-1)-l[i]))j--; // for(auto p:r){ // cout<<p<<" "; // } // cout<<endl; // cout<<(*j)<<" "<<l[i]<<endl; ans=max(ans,abs(*j-l[i])); r.erase(j); } } else{ for(int i=0;i<m;i++){ auto j=lower_bound(l.begin(),l.end(),r[i]); if(j==l.end())j--; if(j>l.begin() && abs(*j-r[i])>abs(*(j-1)-r[i]))j--; // for(auto p:l){ // cout<<p<<" "; // } // cout<<endl; // cout<<(*j)<<" "<<r[i]<<endl; ans=max(ans,abs(*j-r[i])); l.erase(j); } } cout<<ans; return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1037 ms | 2668 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1052 ms | 2664 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 376 KB | Output is correct |
2 | Correct | 7 ms | 504 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 4 ms | 376 KB | Output is correct |
2 | Correct | 21 ms | 504 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 6 ms | 504 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 6 ms | 504 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 7 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1077 ms | 2412 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1086 ms | 2548 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1044 ms | 2440 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |