#include <bits/stdc++.h>
using namespace std;
#define rep(i, a, b) for (auto i = (a); i < (b); ++i)
#define all(x) begin(x), end(x)
#define ub(x...) upper_bound(x)
const int K = 1 << 6;
vector<int> s[K];
template<class T> bool ckmax(T &a, const T &b) { return a < b ? a = b, 1 : 0; }
signed main() {
int k; cin >> k;
rep(i, 0, k) {
int n; cin >> n;
s[i].resize(n);
for (auto &x : s[i]) cin >> x;
sort(all(s[i]));
}
rep(ca, 0, k) {
if (s[ca].empty()) continue;
for (int a : s[ca]) {
int b = -1, cb, c = -1, cc;
rep(i, 0, k) {
if (i == ca || s[i].empty()) continue;
auto it = ub(all(s[i]), a);
if (it == begin(s[i])) continue;
assert(*prev(it) <= a);
if (ckmax(b, *prev(it))) cb = i;
}
if (b < 0) continue;
rep(i, 0, k) {
if (i == ca || i == cb || s[i].empty()) continue;
auto it = ub(all(s[i]), b);
if (it == begin(s[i])) continue;
assert(*prev(it) <= b);
if (ckmax(c, *prev(it))) cc = i;
}
if (c < 0) continue;
++ca; ++cb; ++cc;
if (b + c > a) {
printf("%d %d %d %d %d %d\n", ca, a, cb, b, cc, c);
return 0;
}
}
}
printf("NIE\n");
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
416 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
256 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
256 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
256 KB |
Output is correct |
2 |
Incorrect |
0 ms |
256 KB |
Expected EOF |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
256 KB |
Expected EOF |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
256 KB |
Expected EOF |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
4 ms |
384 KB |
Expected EOF |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
15 ms |
384 KB |
Expected EOF |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
40 ms |
632 KB |
Expected EOF |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
335 ms |
2236 KB |
Output is correct |
2 |
Correct |
205 ms |
1656 KB |
Output is correct |
3 |
Incorrect |
138 ms |
1272 KB |
Expected EOF |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
331 ms |
2296 KB |
Output is correct |
2 |
Correct |
217 ms |
1656 KB |
Output is correct |
3 |
Incorrect |
216 ms |
1532 KB |
Expected EOF |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
700 ms |
4216 KB |
Output is correct |
2 |
Correct |
257 ms |
1912 KB |
Output is correct |
3 |
Incorrect |
259 ms |
2104 KB |
Expected EOF |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
666 ms |
4320 KB |
Output is correct |
2 |
Correct |
311 ms |
2168 KB |
Output is correct |
3 |
Incorrect |
312 ms |
2424 KB |
Expected EOF |