QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#101885 | #5446. 琪露诺的符卡交换 | hos_lyric | 100 ✓ | 46ms | 4636kb | C++14 | 4.4kb | 2023-05-01 16:03:17 | 2023-05-01 16:03:20 |
Judging History
answer
#include <cassert>
#include <cmath>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <functional>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>
using namespace std;
using Int = long long;
template <class T1, class T2> ostream &operator<<(ostream &os, const pair<T1, T2> &a) { return os << "(" << a.first << ", " << a.second << ")"; };
template <class T> ostream &operator<<(ostream &os, const vector<T> &as) { const int sz = as.size(); os << "["; for (int i = 0; i < sz; ++i) { if (i >= 256) { os << ", ..."; break; } if (i > 0) { os << ", "; } os << as[i]; } return os << "]"; }
template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cerr << *i << " "; cerr << endl; }
template <class T> bool chmin(T &t, const T &f) { if (t > f) { t = f; return true; } return false; }
template <class T> bool chmax(T &t, const T &f) { if (t < f) { t = f; return true; } return false; }
namespace bm {
constexpr int LIM_N0 = 210;
constexpr int LIM_N1 = 210;
constexpr int LIM_M = 40010;
int n0, n1, m, as[LIM_M], bs[LIM_M];
int to[LIM_N0], fr[LIM_N1], tof;
int pt[LIM_N0 + 2], zu[LIM_M], used[LIM_N0], lev[LIM_N0], que[LIM_N0], *qb, *qe;
void init(int n0_, int n1_) {
n0 = n0_; n1 = n1_; m = 0;
}
int ae(int u, int v) {
as[m] = u; bs[m] = v; return m++;
}
int augment(int u) {
used[u] = tof;
for (int j = pt[u]; j < pt[u + 1]; ++j) {
const int v = zu[j];
const int w = fr[v];
if (!~w || (used[w] != tof && lev[u] < lev[w] && augment(w))) {
to[u] = v; fr[v] = u; return 1;
}
}
return 0;
}
int run() {
memset(pt, 0, (n0 + 2) * sizeof(int));
for (int i = 0; i < m; ++i) ++pt[as[i] + 2];
for (int u = 2; u <= n0; ++u) pt[u + 1] += pt[u];
for (int i = 0; i < m; ++i) zu[pt[as[i] + 1]++] = bs[i];
memset(to, ~0, n0 * sizeof(int));
memset(fr, ~0, n1 * sizeof(int));
memset(used, ~0, n0 * sizeof(int));
for (tof = 0; ; ) {
qb = qe = que; memset(lev, ~0, n0 * sizeof(int));
for (int u = 0; u < n0; ++u) if (!~to[u]) lev[*qe++ = u] = 0;
for (; qb != qe; ) {
const int u = *qb++;
for (int j = pt[u]; j < pt[u + 1]; ++j) {
const int w = fr[zu[j]];
if (~w && !~lev[w]) lev[*qe++ = w] = lev[u] + 1;
}
}
int f = 0;
for (int u = 0; u < n0; ++u) if (!~to[u]) f += augment(u);
if (!f) return tof;
tof += f;
}
}
// s: true, t: false (s: reachable from unmatched left)
// vertex cover: (0: false, 0: true)
// independent set: (0: true, 1: false)
bool side0[LIM_N0], side1[LIM_N1];
void dfs(int u) {
if (!side0[u]) {
side0[u] = true;
for (int j = pt[u]; j < pt[u + 1]; ++j) {
const int v = zu[j];
if (!side1[v]) {
side1[v] = true;
const int w = fr[v];
if (~w) dfs(w);
}
}
}
}
void minCut() {
memset(side0, 0, n0 * sizeof(bool));
memset(side1, 0, n1 * sizeof(bool));
for (int u = 0; u < n0; ++u) if (!~to[u]) dfs(u);
}
} // namespace bm
int N;
int A[210][210];
struct Op {
int i0, j0, i1, j1;
};
int main() {
for (int numCases; ~scanf("%d", &numCases); ) { for (int caseId = 1; caseId <= numCases; ++caseId) {
scanf("%d", &N);
for (int i = 0; i < N; ++i) for (int j = 0; j < N; ++j) {
scanf("%d", &A[i][j]);
--A[i][j];
}
vector<vector<int>> jss(N);
vector<vector<int>> used(N, vector<int>(N, 0));
for (int k = 0; k < N; ++k) {
bm::init(N, N);
for (int i = 0; i < N; ++i) {
for (int j = 0; j < N; ++j) if (!used[i][j]) {
bm::ae(i, A[i][j]);
}
}
const int res = bm::run();
assert(res == N);
for (int i = 0; i < N; ++i) {
for (int j = 0; j < N; ++j) if (!used[i][j]) {
if (bm::to[i] == A[i][j]) {
jss[i].push_back(j);
used[i][j] = 1;
break;
}
}
}
}
printf("%d\n", N * (N - 1) / 2);
for (int i0 = 0; i0 < N; ++i0) for (int i1 = i0 + 1; i1 < N; ++i1) {
printf("%d %d %d %d\n", i0 + 1, jss[i0][i1] + 1, i1 + 1, jss[i1][i0] + 1);
}
}
#ifndef LOCAL
break;
#endif
}
return 0;
}
这程序好像有点Bug,我给组数据试试?
详细
Subtask #1:
score: 20
Accepted
Test #1:
score: 20
Accepted
time: 14ms
memory: 4160kb
input:
7 132 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 96 ...
output:
8646 1 2 2 1 1 3 3 1 1 4 4 1 1 5 5 1 1 6 6 1 1 7 7 1 1 8 8 1 1 9 9 1 1 10 10 1 1 11 11 1 1 12 12 1 1 13 13 1 1 14 14 1 1 15 15 1 1 16 16 1 1 17 17 1 1 18 18 1 1 19 19 1 1 20 20 1 1 21 21 1 1 22 22 1 1 23 23 1 1 24 24 1 1 25 25 1 1 26 26 1 1 27 27 1 1 28 28 1 1 29 29 1 1 30 30 1 1 31 31 1 1 32 32 1 1...
result:
ok your solution is correct.
Test #2:
score: 0
Accepted
time: 7ms
memory: 3816kb
input:
8 14 13 13 13 13 13 13 13 13 13 13 13 13 13 13 7 7 7 7 7 7 7 7 7 7 7 7 7 7 8 8 8 8 8 8 8 8 8 8 8 8 8 8 14 14 14 14 14 14 14 14 14 14 14 14 14 14 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 10 10 10 10 10 10 10 10 10 10 10 10 10 2 2 2 2 2 2 2 2 2 2 2 2 2 2 9...
output:
91 1 2 2 1 1 3 3 1 1 4 4 1 1 5 5 1 1 6 6 1 1 7 7 1 1 8 8 1 1 9 9 1 1 10 10 1 1 11 11 1 1 12 12 1 1 13 13 1 1 14 14 1 2 3 3 2 2 4 4 2 2 5 5 2 2 6 6 2 2 7 7 2 2 8 8 2 2 9 9 2 2 10 10 2 2 11 11 2 2 12 12 2 2 13 13 2 2 14 14 2 3 4 4 3 3 5 5 3 3 6 6 3 3 7 7 3 3 8 8 3 3 9 9 3 3 10 10 3 3 11 11 3 3 12 12 3...
result:
ok your solution is correct.
Test #3:
score: 0
Accepted
time: 11ms
memory: 3868kb
input:
4 82 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1...
output:
3321 1 2 2 1 1 3 3 1 1 4 4 1 1 5 5 1 1 6 6 1 1 7 7 1 1 8 8 1 1 9 9 1 1 10 10 1 1 11 11 1 1 12 12 1 1 13 13 1 1 14 14 1 1 15 15 1 1 16 16 1 1 17 17 1 1 18 18 1 1 19 19 1 1 20 20 1 1 21 21 1 1 22 22 1 1 23 23 1 1 24 24 1 1 25 25 1 1 26 26 1 1 27 27 1 1 28 28 1 1 29 29 1 1 30 30 1 1 31 31 1 1 32 32 1 1...
result:
ok your solution is correct.
Test #4:
score: 0
Accepted
time: 25ms
memory: 4444kb
input:
8 3 1 1 1 3 3 3 2 2 2 3 1 1 1 3 3 3 2 2 2 1 1 11 5 5 5 5 5 5 5 5 5 5 5 3 3 3 3 3 3 3 3 3 3 3 1 1 1 1 1 1 1 1 1 1 1 9 9 9 9 9 9 9 9 9 9 9 4 4 4 4 4 4 4 4 4 4 4 11 11 11 11 11 11 11 11 11 11 11 2 2 2 2 2 2 2 2 2 2 2 6 6 6 6 6 6 6 6 6 6 6 8 8 8 8 8 8 8 8 8 8 8 10 10 10 10 10 10 10 10 10 10 10 7 7 7 7 7...
output:
3 1 2 2 1 1 3 3 1 2 3 3 2 3 1 2 2 1 1 3 3 1 2 3 3 2 0 55 1 2 2 1 1 3 3 1 1 4 4 1 1 5 5 1 1 6 6 1 1 7 7 1 1 8 8 1 1 9 9 1 1 10 10 1 1 11 11 1 2 3 3 2 2 4 4 2 2 5 5 2 2 6 6 2 2 7 7 2 2 8 8 2 2 9 9 2 2 10 10 2 2 11 11 2 3 4 4 3 3 5 5 3 3 6 6 3 3 7 7 3 3 8 8 3 3 9 9 3 3 10 10 3 3 11 11 3 4 5 5 4 4 6 6 4...
result:
ok your solution is correct.
Subtask #2:
score: 20
Accepted
Dependency #1:
100%
Accepted
Test #5:
score: 20
Accepted
time: 21ms
memory: 4312kb
input:
5 17 9 9 9 9 9 9 9 9 9 9 9 9 9 2 9 9 9 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 2 2 2 2 2 2 2 2 2 2 2 2 11 2 2 2 2 4 4 4 4 4 4 10 4 4 4 4 4 4 4 4 4 4 10 10 10 10 10 10 8 10 10 10 10 10 10 10 10 10 10 12 12 12 12 12 12 12 12 12 12 12 12 14 12 12 12 12 14 14 14 14 14 14 14 14 14 14 14 12 14 14 14 14 14 16 16...
output:
136 1 2 2 1 1 3 3 1 1 4 4 1 1 5 5 1 1 6 6 1 1 14 7 1 1 7 8 1 1 8 9 1 1 9 10 1 1 10 11 1 1 11 12 1 1 12 13 1 1 13 14 1 1 15 15 1 1 16 16 1 1 17 17 1 2 3 3 2 2 4 4 2 2 5 5 2 2 6 6 2 2 17 7 2 2 7 8 2 2 8 9 3 2 9 10 2 2 10 11 3 2 11 12 3 2 12 13 2 2 13 14 2 2 14 15 2 2 15 16 2 2 16 17 2 3 4 4 3 3 5 5 3 ...
result:
ok your solution is correct.
Test #6:
score: 0
Accepted
time: 13ms
memory: 4204kb
input:
9 1 1 28 2 2 2 2 5 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 7 24 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 8 13 13 13 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 16 8 8 8 8 8 8 8 8 8 8 8 8 17 24 24 24 24 24 24 24 24 24 24 24 24...
output:
0 378 1 2 2 1 1 3 3 1 1 4 4 1 1 6 5 2 1 7 6 1 1 8 7 2 1 9 8 1 1 10 9 1 1 11 10 1 1 12 11 2 1 13 12 1 1 14 13 1 1 15 14 1 1 16 15 1 1 17 16 1 1 18 17 1 1 19 18 1 1 20 19 1 1 21 20 1 1 22 21 1 1 23 22 1 1 5 23 1 1 24 24 1 1 25 25 1 1 26 26 1 1 27 27 1 1 28 28 1 2 4 3 2 2 5 4 2 2 6 5 3 2 7 6 2 2 8 7 3 ...
result:
ok your solution is correct.
Test #7:
score: 0
Accepted
time: 8ms
memory: 4148kb
input:
9 22 19 19 19 19 19 19 19 19 19 10 19 19 19 19 19 19 19 19 19 19 19 19 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 8 21 21 21 21 21 21 21 21 5 21 21 21 21 21 21 21 21 21 21 21 21 21 12 12 12 12 12 12 12 22 12 12 12 12 12 12 12 12 12 12 12 12 12 12 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3...
output:
231 1 2 2 1 1 3 3 1 1 4 4 1 1 5 5 1 1 6 6 1 1 7 7 1 1 8 8 1 1 10 9 1 1 9 10 1 1 11 11 1 1 12 12 1 1 13 13 1 1 14 14 1 1 15 15 1 1 16 16 1 1 17 17 1 1 18 18 1 1 19 19 1 1 20 20 1 1 21 21 1 1 22 22 1 2 3 3 2 2 4 4 2 2 5 5 2 2 6 6 2 2 7 7 2 2 8 8 2 2 22 9 2 2 9 10 2 2 10 11 2 2 11 12 2 2 12 13 3 2 13 1...
result:
ok your solution is correct.
Test #8:
score: 0
Accepted
time: 3ms
memory: 3824kb
input:
8 29 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 6 3 3 3 3 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 3 11 11 11 11 11 11 11 11 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 23 1 1 1 1 1 1 1 20 20 20 20 20 20 20 20 20 20 20 25 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 26 26...
output:
406 1 2 2 1 1 3 3 1 1 4 4 1 1 5 5 1 1 6 6 1 1 7 7 1 1 8 8 1 1 9 9 1 1 10 10 1 1 11 11 1 1 25 12 1 1 12 13 1 1 13 14 1 1 14 15 1 1 15 16 1 1 16 17 1 1 17 18 1 1 18 19 1 1 19 20 1 1 20 21 1 1 21 22 1 1 22 23 1 1 23 24 1 1 24 25 1 1 26 26 1 1 27 27 1 1 28 28 1 1 29 29 1 2 3 3 2 2 4 4 2 2 5 5 2 2 6 6 2 ...
result:
ok your solution is correct.
Subtask #3:
score: 60
Accepted
Dependency #1:
100%
Accepted
Dependency #2:
100%
Accepted
Test #9:
score: 60
Accepted
time: 2ms
memory: 3732kb
input:
19 1 1 2 1 2 1 2 3 1 3 2 2 3 1 2 1 3 4 1 4 3 4 3 2 2 1 3 1 2 3 4 4 1 2 5 4 2 1 5 4 4 5 4 4 1 5 3 2 3 2 3 1 3 2 1 3 1 2 5 5 6 6 2 2 1 6 6 2 5 5 3 4 6 1 2 4 2 6 1 4 4 1 4 5 1 1 2 6 5 3 5 5 3 3 3 3 4 7 5 2 3 6 4 2 7 2 1 6 1 1 5 2 1 6 7 7 5 1 2 6 6 3 4 4 7 1 3 6 5 7 3 2 7 3 2 5 1 4 5 4 5 3 3 7 4 4 6 8 1...
output:
0 1 1 2 2 2 3 1 2 2 1 1 3 3 3 2 2 3 1 6 1 2 2 1 1 3 3 3 1 4 4 1 2 3 3 1 2 4 4 3 3 4 4 2 10 1 2 2 2 1 3 3 2 1 4 4 2 1 5 5 3 2 3 3 1 2 4 4 1 2 5 5 2 3 5 4 3 3 4 5 4 4 4 5 1 15 1 2 2 1 1 3 3 1 1 4 4 1 1 5 5 4 1 6 6 2 2 3 3 3 2 6 4 3 2 4 5 3 2 5 6 3 3 2 4 2 3 6 5 1 3 4 6 4 4 5 5 6 4 6 6 5 5 5 6 6 21 1 2...
result:
ok your solution is correct.
Test #10:
score: 0
Accepted
time: 3ms
memory: 3724kb
input:
19 1 1 2 2 1 1 2 3 2 1 2 3 3 3 1 2 1 4 1 2 3 4 1 2 3 4 2 3 1 4 4 1 2 3 5 1 2 3 3 3 4 4 1 2 3 5 2 4 5 1 1 4 5 5 2 5 2 1 4 3 6 1 3 6 6 4 4 5 2 4 6 5 2 3 6 5 6 5 2 1 5 1 4 2 4 3 1 6 3 3 2 3 2 1 4 5 1 7 4 4 1 6 6 7 6 3 7 3 4 5 2 7 6 2 7 6 2 1 3 2 2 5 3 1 2 1 7 3 7 4 2 1 4 5 3 6 3 1 5 5 7 5 6 5 1 4 4 8 6...
output:
0 1 1 2 2 1 3 1 2 2 1 1 3 3 1 2 3 3 2 6 1 2 2 2 1 3 3 2 1 4 4 1 2 4 3 4 2 3 4 4 3 3 4 2 10 1 3 2 1 1 4 3 1 1 5 4 5 1 2 5 5 2 4 3 4 2 3 4 1 2 5 5 2 3 2 4 3 3 5 5 3 4 4 5 1 15 1 3 2 1 1 4 3 1 1 5 4 4 1 6 5 3 1 2 6 2 2 3 3 3 2 4 4 1 2 6 5 1 2 5 6 4 3 5 4 2 3 2 5 2 3 4 6 1 4 3 5 4 4 6 6 3 5 6 6 5 21 1 2...
result:
ok your solution is correct.
Test #11:
score: 0
Accepted
time: 1ms
memory: 3596kb
input:
19 1 1 2 2 1 1 2 3 3 3 2 1 1 2 2 1 3 4 4 1 1 3 4 4 1 2 1 2 2 3 3 2 4 3 5 3 1 5 5 5 4 2 2 5 2 1 5 4 3 4 1 1 3 4 4 3 1 2 3 2 6 1 5 5 3 2 1 5 5 2 3 4 3 2 6 2 3 1 4 6 6 6 4 6 1 4 5 1 2 3 4 6 3 2 4 5 1 7 5 1 1 3 3 7 7 5 4 1 4 4 3 6 4 4 2 7 1 3 2 1 3 5 6 5 3 5 6 4 2 7 6 2 3 7 2 6 2 1 6 2 5 7 4 5 7 1 6 8 1...
output:
0 1 1 2 2 1 3 1 2 2 1 1 3 3 1 2 2 3 2 6 1 2 2 3 1 3 3 2 1 4 4 1 2 2 3 3 2 4 4 4 3 1 4 2 10 1 3 2 1 1 4 3 2 1 2 4 1 1 5 5 3 2 3 3 3 2 4 4 3 2 5 5 2 3 4 4 4 3 5 5 1 4 2 5 5 15 1 2 2 1 1 3 3 1 1 4 4 1 1 6 5 1 1 5 6 2 2 4 3 4 2 2 4 4 2 6 5 3 2 5 6 1 3 3 4 6 3 6 5 4 3 5 6 4 4 3 5 6 4 5 6 6 5 5 6 3 21 1 1...
result:
ok your solution is correct.
Test #12:
score: 0
Accepted
time: 2ms
memory: 3652kb
input:
19 1 1 2 2 2 1 1 3 1 1 2 2 1 3 3 2 3 4 2 1 2 3 2 1 3 3 4 4 4 4 2 3 1 1 5 3 5 5 5 4 1 4 4 5 2 1 1 3 1 5 2 4 3 2 3 2 3 4 1 2 6 5 5 4 3 1 1 3 4 1 6 6 6 6 2 2 1 4 4 2 2 6 5 3 3 1 5 6 2 3 3 5 4 1 2 4 5 7 6 4 4 7 7 5 6 1 1 2 1 4 2 7 5 2 5 3 1 1 2 3 4 2 7 6 7 6 5 6 1 2 7 6 4 5 6 5 3 3 7 3 5 4 2 1 3 4 3 8 2...
output:
0 1 1 2 2 1 3 1 2 2 1 1 3 3 1 2 2 3 2 6 1 2 2 2 1 3 3 1 1 4 4 2 2 4 3 2 2 1 4 1 3 4 4 3 10 1 2 2 1 1 3 3 5 1 4 4 1 1 5 5 3 2 3 3 1 2 5 4 3 2 4 5 1 3 3 4 4 3 4 5 2 4 5 5 4 15 1 2 2 1 1 3 3 1 1 4 4 1 1 5 5 1 1 6 6 2 2 3 3 2 2 4 4 3 2 5 5 5 2 6 6 3 3 4 4 5 3 5 5 3 3 6 6 1 4 4 5 2 4 6 6 5 5 4 6 4 21 1 2...
result:
ok your solution is correct.
Test #13:
score: 0
Accepted
time: 24ms
memory: 4312kb
input:
5 156 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 95 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 34 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 14 17 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 130 1 42 1 1 1 1 1 1 1 1 1 1 1 1 90 1 64 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1...
output:
12090 1 2 2 1 1 3 3 1 1 4 4 1 1 5 5 1 1 6 6 1 1 7 7 1 1 8 8 1 1 9 9 1 1 10 10 1 1 11 11 1 1 12 12 1 1 13 13 1 1 14 14 2 1 15 15 1 1 16 16 1 1 17 17 1 1 18 18 1 1 19 19 1 1 20 20 1 1 21 21 1 1 22 22 1 1 23 23 1 1 24 24 1 1 25 25 1 1 26 26 1 1 107 27 1 1 27 28 1 1 28 29 1 1 29 30 1 1 30 31 1 1 31 32 1...
result:
ok your solution is correct.
Test #14:
score: 0
Accepted
time: 12ms
memory: 4100kb
input:
7 2 1 2 1 2 4 1 4 4 1 2 3 2 4 1 4 3 3 3 1 2 2 39 1 31 38 1 22 35 1 32 36 19 33 1 1 1 4 14 24 35 33 4 1 31 34 1 1 27 1 1 34 8 35 1 1 38 10 1 6 8 10 22 14 2 2 2 20 9 26 2 8 26 23 2 36 36 2 38 2 2 18 27 29 3 28 2 3 31 33 36 2 20 2 11 33 32 2 2 2 32 34 39 11 34 35 3 3 3 16 3 3 3 34 39 3 27 17 30 33 11 3...
output:
1 1 2 2 2 6 1 2 2 1 1 3 3 2 1 4 4 1 2 3 3 1 2 4 4 3 3 4 4 2 741 1 2 2 1 1 6 3 1 1 3 4 1 1 4 5 1 1 5 6 1 1 7 7 1 1 8 8 1 1 9 9 1 1 10 10 1 1 12 11 1 1 11 12 1 1 13 13 1 1 14 14 1 1 15 15 2 1 16 16 2 1 17 17 1 1 18 18 1 1 19 19 1 1 20 20 1 1 21 21 2 1 22 22 1 1 23 23 1 1 24 24 1 1 25 25 1 1 26 26 1 1 ...
result:
ok your solution is correct.
Test #15:
score: 0
Accepted
time: 26ms
memory: 4372kb
input:
7 9 3 8 8 5 7 7 2 5 2 5 9 4 9 8 3 5 7 5 1 2 6 6 9 3 9 6 4 7 6 9 1 7 7 1 4 7 2 7 6 3 8 1 2 9 8 3 8 2 2 4 6 1 6 1 1 5 2 6 4 8 4 6 4 9 3 3 9 9 1 3 7 8 4 1 4 8 5 5 3 2 5 8 8 4 7 2 1 7 3 2 2 2 8 7 6 3 5 6 8 8 1 7 5 8 1 5 2 8 5 1 7 3 1 2 4 1 3 6 6 3 7 8 4 2 3 6 1 5 5 2 4 7 4 3 7 4 6 3 6 6 5 1 5 4 8 4 2 1 ...
output:
36 1 2 2 1 1 3 3 1 1 4 4 1 1 5 5 1 1 6 6 2 1 7 7 4 1 8 8 1 1 9 9 1 2 3 3 2 2 4 4 2 2 5 5 2 2 6 6 5 2 7 7 1 2 8 8 2 2 9 9 5 3 4 4 5 3 5 5 4 3 7 6 3 3 6 7 2 3 8 8 4 3 9 9 2 4 7 5 5 4 8 6 1 4 6 7 3 4 3 8 8 4 9 9 3 5 7 6 4 5 6 7 5 5 9 8 3 5 8 9 6 6 8 7 6 6 7 8 6 6 9 9 9 7 9 8 5 7 8 9 4 8 9 9 8 28 1 2 2 ...
result:
ok your solution is correct.
Test #16:
score: 0
Accepted
time: 13ms
memory: 3944kb
input:
9 8 8 7 6 6 2 2 6 2 5 1 6 5 5 4 1 2 5 3 8 1 2 2 4 3 5 4 7 8 7 1 7 1 6 4 8 4 1 6 8 3 3 3 1 8 3 5 4 3 7 6 5 2 7 3 6 8 8 4 7 2 1 7 5 4 6 3 3 6 2 5 2 5 5 4 4 6 1 6 4 1 3 2 4 3 5 3 6 3 1 4 2 2 1 6 5 1 6 5 4 1 2 118 1 18 1 1 1 1 1 1 4 1 115 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 1 1 1 1 1 1 18 62 1 1 1 1 1 1 1...
output:
28 1 2 2 1 1 5 3 2 1 3 4 2 1 4 5 1 1 6 6 3 1 8 7 1 1 7 8 4 2 4 3 1 2 7 4 4 2 5 5 6 2 3 6 1 2 6 7 4 2 8 8 2 3 5 4 3 3 6 5 2 3 7 6 2 3 8 7 2 3 4 8 5 4 6 5 3 4 1 6 5 4 8 7 3 4 7 8 8 5 5 6 4 5 7 7 6 5 8 8 3 6 6 7 5 6 7 8 1 7 8 8 6 15 1 2 2 1 1 3 3 1 1 4 4 6 1 5 5 1 1 6 6 6 2 3 3 2 2 4 4 4 2 6 5 2 2 5 6 ...
result:
ok your solution is correct.
Test #17:
score: 0
Accepted
time: 34ms
memory: 4628kb
input:
1 200 10 98 86 3 124 117 19 6 74 143 48 196 32 33 15 5 23 56 138 65 150 46 125 157 43 162 48 141 161 93 179 175 163 1 144 183 105 65 158 195 102 112 69 194 142 177 182 135 60 77 140 117 47 171 5 157 14 115 17 163 130 55 134 74 10 108 117 181 75 154 14 138 106 60 127 25 162 196 172 156 66 41 20 127 1...
output:
19900 1 1 2 1 1 2 3 1 1 3 4 1 1 4 5 1 1 5 6 1 1 6 7 1 1 7 8 1 1 8 9 1 1 9 10 1 1 10 11 1 1 11 12 1 1 12 13 1 1 14 14 1 1 15 15 1 1 16 16 1 1 17 17 2 1 18 18 1 1 19 19 1 1 20 20 1 1 21 21 1 1 22 22 1 1 23 23 1 1 24 24 1 1 25 25 1 1 26 26 2 1 27 27 1 1 28 28 1 1 29 29 1 1 30 30 1 1 31 31 2 1 32 32 2 1...
result:
ok your solution is correct.
Test #18:
score: 0
Accepted
time: 41ms
memory: 4636kb
input:
1 200 42 73 47 35 98 195 170 82 124 40 112 112 80 136 155 167 74 76 68 175 89 120 162 78 36 65 58 93 75 42 173 84 148 52 29 59 10 32 34 87 101 176 48 36 139 197 170 149 77 157 122 68 96 95 190 130 97 125 36 4 107 61 174 121 48 166 103 182 96 96 128 200 44 188 32 1 196 61 141 123 153 18 181 199 101 5...
output:
19900 1 2 2 1 1 3 3 1 1 4 4 1 1 5 5 1 1 6 6 2 1 7 7 1 1 8 8 1 1 9 9 1 1 10 10 1 1 11 11 1 1 12 12 2 1 13 13 1 1 14 14 1 1 15 15 1 1 16 16 1 1 17 17 1 1 22 18 1 1 18 19 1 1 19 20 1 1 20 21 1 1 21 22 1 1 23 23 1 1 24 24 1 1 25 25 1 1 26 26 1 1 27 27 1 1 28 28 1 1 29 29 1 1 30 30 1 1 31 31 1 1 32 32 1 ...
result:
ok your solution is correct.
Test #19:
score: 0
Accepted
time: 46ms
memory: 4616kb
input:
1 200 50 94 96 46 14 72 8 114 112 20 65 181 26 198 1 48 129 163 61 44 64 53 39 18 119 183 32 138 194 35 14 24 117 21 136 59 136 63 55 177 106 7 192 127 139 41 171 171 143 62 74 134 110 125 74 197 23 173 159 165 178 70 99 68 42 5 68 172 179 34 38 47 196 194 115 83 20 128 156 79 4 90 151 133 107 164 8...
output:
19900 1 2 2 1 1 3 3 1 1 4 4 1 1 5 5 1 1 6 6 1 1 7 7 1 1 8 8 1 1 9 9 1 1 10 10 1 1 11 11 1 1 12 12 2 1 13 13 2 1 14 14 1 1 15 15 1 1 16 16 1 1 17 17 2 1 18 18 1 1 19 19 1 1 20 20 1 1 21 21 2 1 22 22 1 1 23 23 1 1 24 24 1 1 25 25 2 1 26 26 2 1 27 27 1 1 28 28 1 1 29 29 1 1 30 30 1 1 31 31 1 1 32 32 1 ...
result:
ok your solution is correct.
Test #20:
score: 0
Accepted
time: 42ms
memory: 4536kb
input:
1 200 1 1 1 1 1 1 1 1 169 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 99 1 196 90 1 1 1 1 1 83 174 1 1 1 83 1 1 73 1 59 1 153 1 1 1 1 1 1 1 1 1 1 28 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 175 1 1 1 1 1 1 1 63 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 102 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 37 1 1...
output:
19900 1 2 2 1 1 3 3 1 1 4 4 1 1 5 5 1 1 6 6 24 1 7 7 1 1 8 8 1 1 9 9 1 1 10 10 1 1 11 11 1 1 12 12 1 1 13 13 1 1 14 14 1 1 15 15 1 1 16 16 1 1 17 17 1 1 18 18 1 1 19 19 1 1 20 20 1 1 21 21 1 1 22 22 1 1 23 23 1 1 24 24 1 1 25 25 1 1 26 26 1 1 27 27 1 1 28 28 1 1 29 29 1 1 30 30 1 1 31 31 1 1 32 32 1...
result:
ok your solution is correct.
Extra Test:
score: 0
Extra Test Passed