#include <bits/stdc++.h>
using namespace std;
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
#define ordered_set tree<int, null_type,less<int>, rb_tree_tag,tree_order_statistics_node_update>
vector<pair<int,int>> v;
ordered_set s[50];int b[50];
signed main(){
ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
int n;
cin>>n;
for(int i = 0;i<n;i++){
int d;
cin>>d;
for(int j = 0;j<d;j++){
int x;cin>>x;
v.push_back({x,i});
s[i].insert(x);
}
}
sort(v.begin(),v.end());
for(int i = v.size()-1;i>=0;i--){
b[v[i].second] = -1;
for(int j = 0;j<n;j++){
if(j==v[i].second)continue;
int d = s[j].order_of_key(v[i].first+1);
if(d>0){
b[j]=*s[j].find_by_order(d-1);
}else b[j] = -1;
}
int ma1 = -1 , ind1 = 0 , ma2 = -1 , ind2 = 0;
for(int j = 0;j<n;j++){
if(ma1<b[j]){
ma1 = b[j];
ind1 = j;
}
}
if(ma1==-1)continue;
for(int j = 0;j<n;j++){
if(j==ind1)continue;
if(ma2<b[j]){
ma2 = b[j];
ind2 = j;
}
}
if(ma2==-1)continue;
if(ma1+ma2<=v[i].first)continue;
cout<<v[i].second+1<<" "<<v[i].first<<" "<<ind1+1<<" "<<ma1<<" "<<ind2+1<<" "<<ma2<<endl;
return 0;
}
cout<<"NIE"<<endl;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
340 KB |
Output is correct |
2 |
Correct |
1 ms |
212 KB |
Oczekiwano NIE |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
340 KB |
Oczekiwano NIE |
2 |
Correct |
23 ms |
2000 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
340 KB |
Oczekiwano NIE |
2 |
Correct |
31 ms |
2568 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
696 KB |
Oczekiwano NIE |
2 |
Correct |
74 ms |
5964 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
26 ms |
1744 KB |
Oczekiwano NIE |
2 |
Correct |
159 ms |
8816 KB |
Output is correct |
3 |
Correct |
105 ms |
5824 KB |
Oczekiwano NIE |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
84 ms |
4428 KB |
Oczekiwano NIE |
2 |
Correct |
268 ms |
16656 KB |
Output is correct |
3 |
Correct |
167 ms |
8760 KB |
Oczekiwano NIE |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
309 ms |
27688 KB |
Output is correct |
2 |
Correct |
377 ms |
17912 KB |
Output is correct |
3 |
Correct |
209 ms |
13216 KB |
Oczekiwano NIE |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
272 ms |
27772 KB |
Output is correct |
2 |
Correct |
430 ms |
19792 KB |
Output is correct |
3 |
Correct |
352 ms |
17044 KB |
Oczekiwano NIE |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
853 ms |
55012 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
684 ms |
55080 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |