QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#680683#6809. Code With No Forceslllei#AC ✓11ms6408kbC++203.6kb2024-10-26 22:09:122024-10-26 22:09:12

Judging History

你现在查看的是最新测评结果

  • [2024-10-26 22:09:12]
  • 评测
  • 测评结果:AC
  • 用时:11ms
  • 内存:6408kb
  • [2024-10-26 22:09:12]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
using LL = long long;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, m;
    cin >> n >> m;

    vector a(n, vector<int>(m));
    vector b(n, vector<int>(m));
    vector c(n, vector<int>(m));
    vector lim(n, 0);
    vector sta(n, 0);
    vector<int> aa(m), bb(m), cc(m);
    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < m; ++j) {
            string s;
            cin >> s;
            int p0 = s.find(',');
            int p1 = s.find('/', p0);
            string s0 = s.substr(0, p0);
            string s1 = s.substr(p0 + 1, p1 - p0 - 1);
            string s2 = s.substr(p1 + 1);
            b[i][j] = stoi(s1);
            c[i][j] = stoi(s2);
            if (aa[j] == 0) {
                bb[j] = max(bb[j], b[i][j]);
                cc[j] = max(cc[j], c[i][j]);
            }
            if (s0 == "OK") {
                a[i][j] = 0;
            } else {
                int x;
                if (s0 == "WA") {
                    x = 1;
                } else if (s0 == "TL") {
                    x = 2;
                } else if (s0 == "ML") {
                    x = 3;
                } else {
                    x = 4;
                }
                a[i][j] = x;
                if (aa[j] == 0) {
                    aa[j] = x;
                }
            }
        }
    }
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < m; j++) {
            if (a[i][j] == 0) {
                if (b[i][j] > bb[j] || c[i][j] > cc[j])
                    lim[i] |= (0b100) << (3 * j);
            } else {
                if (a[i][j] == aa[j]) {
                    if (b[i][j] > bb[j] || c[i][j] > cc[j])
                        lim[i] |= (0b100) << (3 * j);
                    else
                        lim[i] |= (0b011) << (3 * j);
                } else {
                    lim[i] |= (0b100) << (3 * j);
                }
            }
            if (a[i][j] == 0) {
                int cur = 0;
                if (b[i][j] == bb[j])
                    cur |= (0b010);
                if (c[i][j] == cc[j])
                    cur |= (0b001);
                if (aa[j] == 0)
                    cur |= (0b100);
                sta[i] |= cur << (3 * j);

            } else {
                int cur = 0;
                if (b[i][j] == bb[j])
                    cur |= (0b010);
                if (c[i][j] == cc[j])
                    cur |= (0b001);
                if (a[i][j] == aa[j] && (b[i][j] <= bb[j]) && (c[i][j] <= cc[j]))
                    cur |= (0b100);
                sta[i] |= cur << (3 * j);
            }
        }
        //cout << '\n';
    }
    const int INF = 1e9;
    const int M = (1 << (3 * m));
    vector<int> dis(M, INF);
    vector<int> pre(M, 0);
    vector<int> num(M, 0);
    queue<int> q;
    dis[0] = 0;
    q.push(0);

    while (q.size()) {
        int u = q.front();
        q.pop();

        for (int i = 0; i < n; ++i) {
            int v = u | sta[i];
            if ((v | lim[i]) != v)
                continue;
            if (dis[v] > dis[u] + 1) {
                dis[v] = dis[u] + 1;
                pre[v] = u;
                num[v] = i;
                q.push(v);
            }
        }
    }
    cout << dis[M - 1] << '\n';
    int cur = M - 1;
    vector<int> ans;
    while (cur) {
        ans.push_back(num[cur] + 1);
        cur = pre[cur];
    }
    reverse(ans.begin(), ans.end());
    for (auto v : ans)
        cout << v << ' ';
    return 0;
}

这程序好像有点Bug,我给组数据试试?

詳細信息

Test #1:

score: 100
Accepted
time: 0ms
memory: 3584kb

input:

2 3
OK,1/1 OK,2/1 OK,2/2
WA,1/1 OK,1/1 TL,1000/1

output:

2
1 2 

result:

ok ok

Test #2:

score: 0
Accepted
time: 0ms
memory: 3628kb

input:

3 3
OK,1/1 OK,2/1 OK,1/2
OK,3/3 OK,1/2 OK,114/514
WA,999/999 TL,3000/2 ML,999/1024

output:

1
3 

result:

ok ok

Test #3:

score: 0
Accepted
time: 0ms
memory: 3592kb

input:

5 3
OK,0/0 OK,0/0 OK,0/0
WA,1/0 RE,0/0 OK,0/0
WA,0/0 WA,0/0 WA,0/0
OK,1/0 RE,0/0 OK,0/0
WA,2/2 RE,2/2 WA,2/2

output:

2
2 3 

result:

ok ok

Test #4:

score: 0
Accepted
time: 0ms
memory: 6408kb

input:

21 6
OK,0/34 OK,15/1 OK,0/1 OK,0/4 OK,0/1 OK,0/36
OK,0/34 OK,0/1 OK,15/1 OK,15/4 OK,0/1 OK,0/36
OK,0/34 OK,15/1 OK,0/1 OK,0/4 OK,15/1 OK,0/36
OK,0/34 OK,0/1 OK,0/1 OK,0/4 OK,15/1 OK,0/36
OK,0/34 OK,0/1 OK,15/1 OK,0/4 OK,0/1 OK,0/36
OK,0/34 OK,0/1 OK,0/1 OK,0/4 OK,0/1 OK,0/36
OK,0/34 OK,0/1 OK,0/1 OK...

output:

7
9 10 12 13 15 17 20 

result:

ok ok

Test #5:

score: 0
Accepted
time: 0ms
memory: 3516kb

input:

1 1
TL,10000/10000

output:

1
1 

result:

ok ok

Test #6:

score: 0
Accepted
time: 0ms
memory: 3476kb

input:

1 1
OK,0/0

output:

1
1 

result:

ok ok

Test #7:

score: 0
Accepted
time: 0ms
memory: 3680kb

input:

398 1
TL,10000/3499
OK,99/4999
WA,3899/2299
OK,7899/399
RE,2399/4399
OK,9499/4199
WA,7699/799
OK,7299/2099
OK,1999/9399
OK,2899/6999
OK,5899/4999
OK,4199/8499
OK,6399/4399
RE,2699/4399
RE,9699/9799
TL,10000/1399
ML,9499/10000
OK,5599/4499
RE,3699/5699
OK,1799/4099
ML,1399/10000
ML,2199/10000
OK,2599...

output:

1
1 

result:

ok ok

Test #8:

score: 0
Accepted
time: 0ms
memory: 3888kb

input:

398 2
ML,0/10000 OK,1666/1666
ML,3333/10000 OK,3333/0
OK,0/8332 WA,3333/0
TL,10000/3333 OK,1666/3333
OK,3333/1666 OK,4999/4999
ML,8332/10000 RE,6666/3333
OK,8332/8332 OK,8332/0
OK,4999/1666 OK,3333/0
OK,1666/3333 OK,3333/1666
OK,4999/8332 OK,6666/3333
OK,4999/6666 OK,8332/4999
RE,3333/1666 OK,3333/6...

output:

2
1 3 

result:

ok ok

Test #9:

score: 0
Accepted
time: 1ms
memory: 3672kb

input:

398 3
OK,2199/7699 OK,6599/2399 WA,8199/1499
ML,2299/10000 OK,6099/4199 ML,599/10000
ML,699/10000 WA,4299/1599 OK,6099/8399
TL,10000/3199 TL,10000/5599 OK,9699/2999
RE,9799/599 WA,4999/6199 OK,9599/9899
OK,899/8899 OK,4499/7499 OK,3199/5899
TL,10000/3599 WA,8299/8299 RE,6199/6999
RE,5599/4299 OK,709...

output:

3
1 2 3 

result:

ok ok

Test #10:

score: 0
Accepted
time: 1ms
memory: 3592kb

input:

398 4
OK,0/6666 OK,1666/1666 WA,3333/0 ML,8332/10000
OK,3333/8332 OK,0/4999 ML,3333/10000 OK,0/6666
OK,6666/3333 TL,10000/3333 OK,0/0 OK,1666/1666
OK,3333/3333 WA,4999/3333 WA,4999/0 OK,4999/0
OK,1666/0 OK,0/6666 ML,4999/10000 OK,3333/8332
OK,3333/0 ML,3333/10000 OK,8332/6666 OK,0/3333
OK,0/4999 ML,...

output:

3
1 48 150 

result:

ok ok

Test #11:

score: 0
Accepted
time: 1ms
memory: 3688kb

input:

398 5
OK,999/8799 OK,6399/9399 OK,7699/4399 RE,4099/9799 OK,7099/4399
TL,10000/7699 OK,2499/4299 OK,2799/2199 ML,7099/10000 OK,8499/8099
OK,3799/399 OK,9599/4099 WA,3299/8699 OK,5299/2399 OK,5699/799
ML,4899/10000 OK,299/8899 OK,7199/299 OK,9899/9499 RE,9399/8699
WA,2999/6699 OK,5499/3499 OK,899/499...

output:

6
1 3 189 4 104 182 

result:

ok ok

Test #12:

score: 0
Accepted
time: 0ms
memory: 6280kb

input:

398 6
WA,0/3333 WA,3333/3333 OK,4999/3333 OK,6666/4999 OK,8332/8332 OK,4999/3333
OK,1666/4999 OK,8332/4999 OK,6666/0 OK,4999/4999 ML,4999/10000 RE,1666/6666
TL,10000/4999 ML,6666/10000 TL,10000/4999 OK,8332/6666 WA,0/4999 OK,1666/0
OK,0/1666 OK,0/3333 OK,8332/4999 OK,0/6666 OK,4999/6666 OK,1666/3333...

output:

4
1 2 3 7 

result:

ok ok

Test #13:

score: 0
Accepted
time: 0ms
memory: 3624kb

input:

399 1
TL,10000/3299
OK,2299/1099
ML,99/10000
ML,6199/10000
RE,1199/2099
OK,4699/6199
OK,2899/5099
ML,7899/10000
RE,299/1699
TL,10000/1399
TL,10000/8099
ML,6199/10000
OK,1799/8599
OK,6899/8999
OK,3899/6999
RE,3599/8799
TL,10000/399
TL,10000/8699
ML,199/10000
ML,4499/10000
WA,2799/5499
OK,4599/9299
RE...

output:

1
1 

result:

ok ok

Test #14:

score: 0
Accepted
time: 1ms
memory: 3604kb

input:

399 2
OK,4999/0 OK,3333/1666
OK,8332/3333 OK,3333/0
OK,1666/0 OK,8332/6666
OK,1666/1666 OK,1666/6666
OK,3333/4999 OK,1666/1666
OK,1666/6666 OK,6666/1666
OK,3333/1666 OK,4999/0
WA,4999/0 OK,0/6666
OK,1666/6666 OK,8332/8332
WA,0/4999 OK,3333/8332
TL,10000/0 RE,4999/0
ML,1666/10000 OK,4999/6666
OK,6666...

output:

2
9 194 

result:

ok ok

Test #15:

score: 0
Accepted
time: 1ms
memory: 3628kb

input:

399 3
OK,9499/3599 RE,8199/8899 OK,8999/599
OK,5499/4399 OK,9299/2199 ML,8999/10000
OK,5099/9899 OK,6599/1199 ML,8899/10000
OK,8999/3899 OK,3699/8699 OK,9099/699
OK,0/399 OK,7699/5199 TL,10000/7699
OK,6999/9399 OK,9699/3399 TL,10000/2899
OK,5799/6899 OK,1699/9699 OK,6199/199
RE,2499/8399 OK,2999/799...

output:

3
1 3 8 

result:

ok ok

Test #16:

score: 0
Accepted
time: 0ms
memory: 3724kb

input:

399 4
OK,4999/4999 OK,8332/3333 TL,10000/1666 OK,1666/6666
ML,8332/10000 WA,0/6666 OK,4999/4999 OK,0/8332
OK,3333/0 OK,4999/6666 OK,3333/8332 OK,0/3333
OK,4999/1666 OK,4999/6666 OK,1666/0 RE,8332/3333
OK,6666/6666 OK,6666/3333 TL,10000/4999 ML,0/10000
OK,6666/4999 OK,6666/0 OK,8332/3333 OK,6666/8332...

output:

3
1 2 4 

result:

ok ok

Test #17:

score: 0
Accepted
time: 1ms
memory: 3884kb

input:

399 5
OK,299/9799 OK,1099/9399 OK,6099/6899 WA,7299/6999 OK,9199/1499
TL,10000/999 TL,10000/8499 OK,3999/9599 OK,5799/99 OK,9399/3799
ML,6399/10000 OK,8499/4699 OK,599/9399 OK,2399/2499 OK,6299/7499
OK,7899/5899 RE,6899/4099 OK,6399/2299 WA,3599/1499 OK,2299/6799
ML,3199/10000 OK,8099/4099 WA,1399/3...

output:

4
1 2 9 95 

result:

ok ok

Test #18:

score: 0
Accepted
time: 2ms
memory: 6276kb

input:

399 6
OK,4999/4999 OK,0/1666 OK,3333/4999 OK,4999/0 OK,4999/3333 TL,10000/8332
OK,3333/1666 RE,3333/3333 RE,3333/3333 ML,8332/10000 OK,1666/6666 RE,8332/0
OK,1666/6666 WA,4999/6666 TL,10000/6666 OK,1666/1666 OK,4999/0 OK,6666/3333
OK,1666/8332 ML,3333/10000 OK,6666/0 TL,10000/4999 WA,4999/1666 WA,83...

output:

4
1 2 4 84 

result:

ok ok

Test #19:

score: 0
Accepted
time: 0ms
memory: 3652kb

input:

400 1
RE,9899/5999
ML,0/10000
OK,5299/399
OK,5199/7099
OK,599/0
OK,9299/2199
OK,8099/4099
OK,9699/2399
WA,399/7499
OK,9599/4899
WA,9099/0
ML,1599/10000
TL,10000/999
OK,8599/6799
OK,2099/8999
OK,8699/1699
OK,4499/3299
OK,7899/8899
OK,7099/8199
ML,8799/10000
OK,599/9699
OK,7999/5699
OK,9499/7299
OK,11...

output:

1
1 

result:

ok ok

Test #20:

score: 0
Accepted
time: 0ms
memory: 3592kb

input:

400 2
WA,1666/8332 OK,8332/1666
OK,6666/1666 OK,1666/8332
TL,10000/6666 OK,8332/3333
ML,0/10000 OK,3333/3333
ML,1666/10000 OK,4999/1666
OK,4999/1666 OK,6666/8332
TL,10000/6666 OK,3333/1666
ML,4999/10000 OK,0/6666
WA,4999/6666 WA,0/3333
WA,3333/1666 WA,4999/1666
ML,4999/10000 OK,6666/6666
OK,3333/833...

output:

2
1 30 

result:

ok ok

Test #21:

score: 0
Accepted
time: 1ms
memory: 3628kb

input:

400 3
OK,1999/799 OK,5899/5099 OK,4399/9499
TL,10000/6299 OK,7699/1099 OK,1999/3599
TL,10000/2599 RE,1199/799 OK,9099/4499
RE,4799/599 ML,9199/10000 ML,6099/10000
OK,3699/6499 OK,6799/6499 OK,1699/4599
OK,6599/399 OK,6799/799 OK,6999/8599
OK,6099/2599 TL,10000/1299 TL,10000/7599
OK,99/99 RE,8899/709...

output:

4
1 2 3 4 

result:

ok ok

Test #22:

score: 0
Accepted
time: 1ms
memory: 3596kb

input:

400 4
OK,4999/6666 OK,8332/3333 TL,10000/0 OK,0/8332
RE,6666/4999 OK,3333/6666 OK,8332/6666 OK,4999/1666
OK,3333/6666 OK,4999/3333 OK,8332/4999 OK,1666/0
ML,8332/10000 OK,6666/0 OK,1666/6666 OK,1666/8332
OK,3333/4999 OK,3333/0 OK,6666/0 OK,1666/8332
OK,3333/0 OK,6666/4999 OK,8332/6666 OK,0/6666
OK,1...

output:

4
1 2 252 26 

result:

ok ok

Test #23:

score: 0
Accepted
time: 1ms
memory: 3668kb

input:

400 5
OK,5099/2699 OK,6199/4799 RE,0/3499 ML,99/10000 WA,4299/3899
OK,2399/8099 RE,9799/5999 RE,999/3599 OK,4199/4399 OK,7899/5999
WA,1599/699 OK,6999/3999 OK,1499/599 OK,8899/5899 OK,3299/1499
OK,8099/8399 OK,7299/7799 WA,4699/6099 OK,5099/1799 OK,3599/0
WA,6199/7499 OK,4699/1799 OK,9799/3799 ML,33...

output:

3
1 2 3 

result:

ok ok

Test #24:

score: 0
Accepted
time: 3ms
memory: 6228kb

input:

400 6
OK,4999/8332 OK,3333/4999 OK,3333/0 OK,8332/8332 OK,1666/3333 OK,4999/4999
OK,1666/8332 OK,8332/0 OK,8332/6666 OK,1666/3333 ML,4999/10000 OK,1666/6666
OK,8332/3333 RE,1666/0 OK,1666/8332 ML,6666/10000 OK,4999/8332 OK,4999/0
OK,4999/8332 OK,1666/1666 OK,3333/0 OK,4999/6666 OK,1666/8332 OK,3333/...

output:

5
1 2 121 207 12 

result:

ok ok

Test #25:

score: 0
Accepted
time: 2ms
memory: 3700kb

input:

385 5
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/9899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,1399/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

12
1 4 5 6 8 10 11 14 111 3 138 41 

result:

ok ok

Test #26:

score: 0
Accepted
time: 7ms
memory: 6384kb

input:

385 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,1666/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,6666/0 OK,0/0...

output:

7
11 208 204 183 326 205 271 

result:

ok ok

Test #27:

score: 0
Accepted
time: 2ms
memory: 3692kb

input:

386 5
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/9899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/7699 OK,0/0 OK,...

output:

14
1 2 3 4 5 6 7 8 9 10 11 13 14 165 

result:

ok ok

Test #28:

score: 0
Accepted
time: 6ms
memory: 6276kb

input:

386 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,8332/0 OK,0/0 OK...

output:

7
59 6 119 127 338 12 385 

result:

ok ok

Test #29:

score: 0
Accepted
time: 2ms
memory: 3624kb

input:

387 5
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/7899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

11
2 5 8 13 14 15 243 3 23 189 149 

result:

ok ok

Test #30:

score: 0
Accepted
time: 10ms
memory: 6196kb

input:

387 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,8332/0 OK,0/0...

output:

6
14 278 340 362 188 344 

result:

ok ok

Test #31:

score: 0
Accepted
time: 2ms
memory: 3628kb

input:

388 5
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/9899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8599/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

12
1 2 5 7 8 9 10 11 12 171 186 36 

result:

ok ok

Test #32:

score: 0
Accepted
time: 6ms
memory: 6276kb

input:

388 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,3333/0 OK,0/0...

output:

6
28 274 9 124 191 294 

result:

ok ok

Test #33:

score: 0
Accepted
time: 2ms
memory: 3620kb

input:

389 5
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/6799 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/999 OK,0/0 OK,0...

output:

12
1 2 3 4 5 7 13 14 299 9 112 268 

result:

ok ok

Test #34:

score: 0
Accepted
time: 2ms
memory: 6208kb

input:

389 6
OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/4999 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,8332/0 OK,0/0 OK...

output:

7
14 15 242 3 295 134 28 

result:

ok ok

Test #35:

score: 0
Accepted
time: 2ms
memory: 3884kb

input:

390 5
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/9899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,2999/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

12
1 2 4 7 8 9 11 13 355 328 327 12 

result:

ok ok

Test #36:

score: 0
Accepted
time: 2ms
memory: 6208kb

input:

390 6
OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,8332/0 OK,0/0 OK,0/...

output:

8
4 6 17 18 283 197 40 41 

result:

ok ok

Test #37:

score: 0
Accepted
time: 0ms
memory: 3632kb

input:

391 5
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/9899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

11
1 5 7 11 13 14 79 176 12 281 6 

result:

ok ok

Test #38:

score: 0
Accepted
time: 4ms
memory: 6204kb

input:

391 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/1666 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,8332/0 OK,0/0...

output:

8
7 9 13 15 210 206 231 181 

result:

ok ok

Test #39:

score: 0
Accepted
time: 2ms
memory: 3608kb

input:

392 5
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/9899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

14
1 2 3 4 5 6 7 8 10 11 13 14 15 315 

result:

ok ok

Test #40:

score: 0
Accepted
time: 11ms
memory: 6188kb

input:

392 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,8332/0 OK,0/0...

output:

6
1 378 12 354 385 30 

result:

ok ok

Test #41:

score: 0
Accepted
time: 2ms
memory: 3696kb

input:

393 5
OK,9299/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/9899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

12
1 2 4 5 10 11 13 14 15 135 238 263 

result:

ok ok

Test #42:

score: 0
Accepted
time: 6ms
memory: 6200kb

input:

393 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,1666/0 OK,0/0...

output:

5
325 9 351 47 208 

result:

ok ok

Test #43:

score: 0
Accepted
time: 0ms
memory: 3628kb

input:

394 5
OK,4399/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/9899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,1299/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/1099 OK,0/0 OK,...

output:

11
1 2 3 4 5 7 8 312 65 378 142 

result:

ok ok

Test #44:

score: 0
Accepted
time: 10ms
memory: 6252kb

input:

394 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/4999 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,8332/0 OK,0/0...

output:

7
5 389 360 134 157 322 23 

result:

ok ok

Test #45:

score: 0
Accepted
time: 2ms
memory: 3628kb

input:

395 5
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/9899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

10
1 4 5 8 86 94 15 176 198 383 

result:

ok ok

Test #46:

score: 0
Accepted
time: 5ms
memory: 6336kb

input:

395 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,8332/0 OK,0/0...

output:

6
47 191 15 89 174 6 

result:

ok ok

Test #47:

score: 0
Accepted
time: 0ms
memory: 3692kb

input:

396 5
OK,9699/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/9899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

11
1 2 4 5 11 13 14 15 25 243 317 

result:

ok ok

Test #48:

score: 0
Accepted
time: 6ms
memory: 6384kb

input:

396 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,8332/0 OK,0/0...

output:

6
321 376 278 68 120 3 

result:

ok ok

Test #49:

score: 0
Accepted
time: 2ms
memory: 3632kb

input:

397 5
OK,7499/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/5299 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,6499/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

13
1 2 3 4 8 10 11 12 13 14 15 258 43 

result:

ok ok

Test #50:

score: 0
Accepted
time: 5ms
memory: 6232kb

input:

397 6
OK,1666/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/3333 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,4999/0 OK,0/0...

output:

6
17 89 3 319 136 380 

result:

ok ok

Test #51:

score: 0
Accepted
time: 0ms
memory: 3888kb

input:

398 5
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/7699 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

10
1 5 11 14 330 12 327 15 370 9 

result:

ok ok

Test #52:

score: 0
Accepted
time: 4ms
memory: 6196kb

input:

398 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,8332/0 OK,0/0...

output:

8
2 383 9 15 69 208 3 60 

result:

ok ok

Test #53:

score: 0
Accepted
time: 2ms
memory: 3844kb

input:

399 5
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8099 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

12
1 2 4 5 6 8 11 13 14 15 238 392 

result:

ok ok

Test #54:

score: 0
Accepted
time: 3ms
memory: 6280kb

input:

399 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,1666/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,8332/0 OK,0/0...

output:

8
2 97 18 30 12 199 203 3 

result:

ok ok

Test #55:

score: 0
Accepted
time: 2ms
memory: 3668kb

input:

400 5
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/9899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/6599 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

11
1 2 7 10 11 13 55 15 128 98 367 

result:

ok ok

Test #56:

score: 0
Accepted
time: 5ms
memory: 6224kb

input:

400 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,1666/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/3333 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,8332/0 OK,0/0 OK...

output:

7
33 3 135 57 18 239 155 

result:

ok ok

Test #57:

score: 0
Accepted
time: 2ms
memory: 6196kb

input:

18 6
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/199 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 O...

output:

18
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 

result:

ok ok