# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
165531 |
2019-11-27T12:04:55 Z |
muhi1112 |
Cipele (COCI18_cipele) |
C++17 |
|
1000 ms |
4072 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++){
cin>>a;
l.pb(a);
}
for(int i=0;i<m;i++){
cin>>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(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(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;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1073 ms |
4060 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1076 ms |
4072 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
376 KB |
Output is correct |
2 |
Runtime error |
16 ms |
1116 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
504 KB |
Output is correct |
2 |
Runtime error |
14 ms |
772 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
9 ms |
504 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
9 ms |
504 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
10 ms |
632 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1033 ms |
3848 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1076 ms |
4044 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1075 ms |
3820 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |