#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];
bool ckmax(auto &a, const auto &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;
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;
if (ckmax(c, *prev(it))) cc = i;
}
if (c < 0) continue;
++ca; ++cb; ++cc;
if (b + c > a) return cout << ca << ' ' << a << ' ' << cb << ' ' << b << ' ' << cc << ' ' << c, 0;
--ca;
}
}
cout << "NIE";
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
256 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
360 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 |
2 |
Correct |
0 ms |
256 KB |
Oczekiwano NIE |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
256 KB |
Oczekiwano NIE |
2 |
Correct |
19 ms |
640 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
384 KB |
Oczekiwano NIE |
2 |
Correct |
28 ms |
768 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
384 KB |
Oczekiwano NIE |
2 |
Correct |
62 ms |
1656 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
31 ms |
640 KB |
Oczekiwano NIE |
2 |
Correct |
93 ms |
2168 KB |
Output is correct |
3 |
Correct |
89 ms |
1528 KB |
Oczekiwano NIE |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
78 ms |
1240 KB |
Oczekiwano NIE |
2 |
Correct |
161 ms |
3704 KB |
Output is correct |
3 |
Correct |
145 ms |
2296 KB |
Oczekiwano NIE |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
334 ms |
4472 KB |
Output is correct |
2 |
Correct |
222 ms |
3704 KB |
Output is correct |
3 |
Correct |
210 ms |
3064 KB |
Oczekiwano NIE |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
341 ms |
4472 KB |
Output is correct |
2 |
Correct |
265 ms |
3960 KB |
Output is correct |
3 |
Correct |
313 ms |
3704 KB |
Oczekiwano NIE |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
701 ms |
5988 KB |
Output is correct |
2 |
Correct |
385 ms |
4040 KB |
Output is correct |
3 |
Correct |
403 ms |
4216 KB |
Oczekiwano NIE |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
674 ms |
6008 KB |
Output is correct |
2 |
Correct |
301 ms |
4344 KB |
Output is correct |
3 |
Correct |
546 ms |
4728 KB |
Oczekiwano NIE |