QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#407118#8225. 最小值之和juicy_name100 ✓94ms10836kbC++144.9kb2024-05-07 23:15:402024-05-07 23:15:42

Judging History

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

  • [2024-05-07 23:15:42]
  • 评测
  • 测评结果:100
  • 用时:94ms
  • 内存:10836kb
  • [2024-05-07 23:15:40]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn = 1e5 + 5;
int n;
int f[maxn];
int p[85][85][85];
void exgcd(int a, int b, int &x, int &y){
    if(b == 0){
        x = 1; y = 0; return ;
    }
    exgcd(b, a % b, y, x); y -= a / b * x; return ;
}
int tp[6405]; int tc[85];
int tk[85];
pair<int, int> pc[85][85][85];
bool vis[85][85];
bool vs[85];
void dfs(int l, int r){
    // cerr << l << " " << r << endl;
    if(vis[l][r]) return ;
    vis[l][r] = 1;
    if(l == r){
        if(f[l] == f[l + 1]) p[l][r][0] = f[l];
        return ;
    }
    int N = r - l + 1;
    // cerr << l << " " << r << endl;
    for(int i = l;i <= r;i++){
        if(i == l){
            dfs(i + 1, r);
            if(p[i + 1][r][f[l] % (N - 1)] < f[l]) continue;
            p[l][r][f[l] % N] = max(p[l][r][f[l] % N], f[l]); continue;
        }
        if(i == r){
            dfs(l, i - 1);
            if(p[l][i - 1][f[r + 1] % (N - 1)] < f[r + 1]) continue;
            p[l][r][f[r + 1] % N] = max(p[l][r][f[r + 1] % N], f[r + 1]); continue;
        }
        dfs(l, i - 1); dfs(i + 1, r);
        int L = i - l; int R = r - i;
        int pg = __gcd(L, R); int pN = L * R / pg;
        int tx = 0, ty = 0; exgcd(L, R, tx, ty); int pR = R / pg;
        tx = (tx % pR + pR) % pR;
        for(int j = 0;j < pN;j++) tp[j] = -1;
        for(int j = 0;j < L;j++){
            if(p[l][i - 1][j] < 0) continue;
            for(int k = 0;k < R;k++){
                if(p[i + 1][r][k] < 0) continue;
                if(j % pg != k % pg) continue;
                int px = 1ll * ((k - j) / pg) * tx % pR; px = (px + pR) % pR; 
                int pmi = min(p[l][i - 1][j], p[i + 1][r][k]);
                int pnum = L * px + j;
                if(pnum > pmi) continue;
                // cerr << L << " " << j << " " << R << " " << k << " " << pnum << " " << tx << " " << ty << endl;
                assert(pnum % L == j && pnum % R == k);
                tp[pnum] = max(tp[pnum], pnum + (pmi - pnum) / pN * pN);
            }
        }
        for(int j = 0;j < N;j++) tc[j] = -1;
        for(int j = 0;j < pN;j++){
            if(tp[j] == -1) continue;
            tc[tp[j] % N] = max(tc[tp[j] % N], tp[j]);
        }
        for(int j = 0;j < N;j++){
            vs[j] = 0;
            // if(tc[j] >= 0) assert(tc[j] % N == j);
        }
        int x = (N - pN % N) % N;
        for(int j = 0;j < N;j++){
            if(vs[j]) continue;
            int now = j;
            do{
                if(tc[now] - pN > tc[(now + x) % N]){
                    tc[(now + x) % N] = tc[now] - pN;
                }
                vs[now] = 1; now = (now + x) % N;
                // cerr << now << endl;
            }while(now != j);
            do{
                if(tc[now] - pN > tc[(now + x) % N]){
                    tc[(now + x) % N] = tc[now] - pN;
                }
                now = (now + x) % N;
                // cerr << now << endl;
            }while(now != j);
        }
        for(int j = 0;j < N;j++){
            if(tc[j] > p[l][r][j]){
                p[l][r][j] = tc[j]; pc[l][r][j] = make_pair(tc[j], i);
            }
        }
    }
    // cerr << l << " " << r << endl << "? ";
    // for(int i = 0;i < N;i++){
        // cerr << p[l][r][i] << " ";
    // }
    // cerr << endl;
    // cerr << "? " << l << " " << r << " ok" << endl;
    return ;
}
int ans[maxn];
void dfsp(int l, int r, int num, int res){
    if(l == r){
        ans[l] = f[l] - num + res; return ;
    }
    int N = r - l + 1;
    // cerr << "? " << l << " " << r << " " << num << " " << res << endl;
    assert(p[l][r][num % N] >= num);
    if(f[l] % N == num % N && p[l + 1][r][f[l] % (N - 1)] >= f[l]){
        ans[l] = (f[l] - num) / N + res; dfsp(l + 1, r, f[l], ans[l]); return ;
    }
    if(f[r + 1] % N == num % N && p[l][r - 1][f[r + 1] % (N - 1)] >= f[r + 1]){
        ans[r] = (f[r + 1] - num) / N + res; dfsp(l, r - 1, f[r + 1], ans[r]); return ;
    }
    int pos = pc[l][r][num % N].second;
    // cerr << pc[l][r][num % N].first << " " << pc[l][r][num % N].second << endl;
    ans[pos] = (pc[l][r][num % N].first - num) / N + res;
    dfsp(l, pos - 1, pc[l][r][num % N].first, ans[pos]);
    dfsp(pos + 1, r, pc[l][r][num % N].first, ans[pos]);
    return ;
}   
int main(){
    ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
    cin >> n;
    for(int i = 1;i <= n;i++){
        cin >> f[i];
    }
    if(n == 1){
        if(f[1] > 0){
            cout << "No" << endl; return 0;
        }
        cout << "Yes" << endl;
        cout << endl; return 0;
    }
    memset(p, -1, sizeof(p));
    dfs(1, n - 1);
    if(p[1][n - 1][0] < 0){
        cout << "No" << endl; return 0;
    }
    dfsp(1, n - 1, 0, 0);
    cout << "Yes" << '\n';
    for(int i = 1;i < n;i++){
        cout << ans[i] << " ";
    }
    cout << '\n';
    cout.flush(); return 0;
}

詳細信息

Subtask #1:

score: 11
Accepted

Test #1:

score: 11
Accepted
time: 1ms
memory: 7960kb

input:

5
14 14 12 13 13

output:

Yes
5 3 3 4 

result:

ok The answer is correct.

Test #2:

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

input:

5
4 4 7 7 4

output:

Yes
1 1 4 1 

result:

ok The answer is correct.

Test #3:

score: 11
Accepted
time: 1ms
memory: 6476kb

input:

5
4 13 14 14 13

output:

Yes
1 4 5 4 

result:

ok The answer is correct.

Test #4:

score: 11
Accepted
time: 1ms
memory: 6060kb

input:

5
11 11 10 5 5

output:

Yes
5 4 1 2 

result:

ok The answer is correct.

Test #5:

score: 11
Accepted
time: 1ms
memory: 7332kb

input:

5
10 10 10 4 4

output:

Yes
4 4 1 1 

result:

ok The answer is correct.

Test #6:

score: 11
Accepted
time: 1ms
memory: 7812kb

input:

5
20 20 17 7 4

output:

Yes
10 7 2 1 

result:

ok The answer is correct.

Test #7:

score: 11
Accepted
time: 1ms
memory: 7192kb

input:

5
12 12 16 19 19

output:

Yes
3 3 5 8 

result:

ok The answer is correct.

Test #8:

score: 11
Accepted
time: 1ms
memory: 7904kb

input:

5
2 2 6 11 11

output:

Yes
2 0 3 8 

result:

ok The answer is correct.

Test #9:

score: 11
Accepted
time: 1ms
memory: 7920kb

input:

5
10 10 8 5 5

output:

Yes
5 3 1 2 

result:

ok The answer is correct.

Test #10:

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

input:

5
24 24 28 28 26

output:

Yes
6 6 9 7 

result:

ok The answer is correct.

Test #11:

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

input:

5
5 5 22 31 31

output:

Yes
2 1 10 19 

result:

ok The answer is correct.

Test #12:

score: 11
Accepted
time: 1ms
memory: 6288kb

input:

5
8 33 38 38 29

output:

Yes
2 11 16 9 

result:

ok The answer is correct.

Test #13:

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

input:

5
16 16 4 12 12

output:

Yes
13 1 1 9 

result:

ok The answer is correct.

Test #14:

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

input:

5
29 29 24 26 26

output:

Yes
11 6 6 8 

result:

ok The answer is correct.

Test #15:

score: 11
Accepted
time: 1ms
memory: 7856kb

input:

5
0 33 33 32 32

output:

Yes
0 13 10 12 

result:

ok The answer is correct.

Test #16:

score: 11
Accepted
time: 1ms
memory: 7720kb

input:

5
20 16 8 25 22

output:

No

result:

ok The answer is correct.

Test #17:

score: 11
Accepted
time: 1ms
memory: 6940kb

input:

5
0 2 3 0 2

output:

No

result:

ok The answer is correct.

Test #18:

score: 11
Accepted
time: 1ms
memory: 6252kb

input:

5
28 23 29 29 24

output:

No

result:

ok The answer is correct.

Test #19:

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

input:

5
0 1 0 4 2

output:

No

result:

ok The answer is correct.

Test #20:

score: 11
Accepted
time: 1ms
memory: 7224kb

input:

5
12 21 21 13 4

output:

No

result:

ok The answer is correct.

Test #21:

score: 11
Accepted
time: 1ms
memory: 7828kb

input:

5
9 22 25 23 12

output:

No

result:

ok The answer is correct.

Test #22:

score: 11
Accepted
time: 1ms
memory: 7696kb

input:

5
6 7 7 6 6

output:

Yes
2 3 1 3 

result:

ok The answer is correct.

Test #23:

score: 11
Accepted
time: 1ms
memory: 7992kb

input:

5
25 25 24 20 20

output:

Yes
8 7 5 5 

result:

ok The answer is correct.

Test #24:

score: 11
Accepted
time: 1ms
memory: 7684kb

input:

5
17 9 8 16 9

output:

No

result:

ok The answer is correct.

Test #25:

score: 11
Accepted
time: 1ms
memory: 6196kb

input:

5
20 5 34 34 23

output:

No

result:

ok The answer is correct.

Test #26:

score: 11
Accepted
time: 1ms
memory: 6152kb

input:

5
15 33 35 35 31

output:

No

result:

ok The answer is correct.

Test #27:

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

input:

5
21 22 23 1 18

output:

No

result:

ok The answer is correct.

Test #28:

score: 11
Accepted
time: 1ms
memory: 6968kb

input:

5
4 2 3 4 2

output:

No

result:

ok The answer is correct.

Test #29:

score: 11
Accepted
time: 1ms
memory: 7784kb

input:

5
16 25 8 19 7

output:

No

result:

ok The answer is correct.

Test #30:

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

input:

5
4 0 8 6 6

output:

No

result:

ok The answer is correct.

Test #31:

score: 11
Accepted
time: 1ms
memory: 7096kb

input:

2
2 3

output:

No

result:

ok The answer is correct.

Test #32:

score: 11
Accepted
time: 1ms
memory: 6684kb

input:

2
2 2

output:

Yes
2 

result:

ok The answer is correct.

Test #33:

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

input:

1
0

output:

Yes


result:

ok The answer is correct.

Test #34:

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

input:

1
233

output:

No

result:

ok The answer is correct.

Subtask #2:

score: 15
Accepted

Dependency #1:

100%
Accepted

Test #35:

score: 15
Accepted
time: 2ms
memory: 8648kb

input:

8
16 16 8 8 9 9 6 6

output:

Yes
16 0 4 1 5 1 2 

result:

ok The answer is correct.

Test #36:

score: 15
Accepted
time: 0ms
memory: 6020kb

input:

8
16 16 9 21 21 23 23 23

output:

Yes
10 1 2 14 1 9 9 

result:

ok The answer is correct.

Test #37:

score: 15
Accepted
time: 1ms
memory: 7336kb

input:

8
10 10 15 15 15 10 10 5

output:

Yes
10 0 5 5 2 3 1 

result:

ok The answer is correct.

Test #38:

score: 15
Accepted
time: 1ms
memory: 6560kb

input:

8
13 13 15 15 24 24 24 10

output:

Yes
7 1 9 1 9 9 2 

result:

ok The answer is correct.

Test #39:

score: 15
Accepted
time: 0ms
memory: 6912kb

input:

8
5 13 16 25 25 24 4 4

output:

Yes
1 3 4 9 8 0 4 

result:

ok The answer is correct.

Test #40:

score: 15
Accepted
time: 1ms
memory: 7784kb

input:

8
1313 1695 1695 1129 1129 711 557 557

output:

Yes
459 841 79 575 157 80 80 

result:

ok The answer is correct.

Test #41:

score: 15
Accepted
time: 1ms
memory: 8560kb

input:

8
1386 1416 1416 1069 1069 390 645 645

output:

Yes
385 415 225 228 56 55 315 

result:

ok The answer is correct.

Test #42:

score: 15
Accepted
time: 0ms
memory: 6112kb

input:

8
3377 3377 3164 3164 3570 3570 3365 3365

output:

Yes
665 452 452 452 724 519 519 

result:

ok The answer is correct.

Test #43:

score: 15
Accepted
time: 1ms
memory: 7640kb

input:

8
28167709 33181201 33829300 33829300 21924091 26145199 28398185 28398185

output:

Yes
5213219 7719965 8368064 3132013 3132013 5242567 7495553 

result:

ok The answer is correct.

Test #44:

score: 15
Accepted
time: 0ms
memory: 7028kb

input:

8
4726918 12793592 12793592 6681214 13995142 22020836 22566624 22566624

output:

Yes
675274 7113368 1000990 1000990 3438966 7451813 7997601 

result:

ok The answer is correct.

Test #45:

score: 15
Accepted
time: 0ms
memory: 7352kb

input:

8
9146297 15736298 15736298 16471005 16471005 14187656 14187656 6001415

output:

Yes
1381492 3938409 2389763 4673114 2389764 2389765 857345 

result:

ok The answer is correct.

Test #46:

score: 15
Accepted
time: 0ms
memory: 6144kb

input:

8
25115296 25115296 22120670 21035156 20603135 28703897 28703897 27553199

output:

Yes
6624695 3630069 3087312 2943305 2943305 7569035 6418337 

result:

ok The answer is correct.

Test #47:

score: 15
Accepted
time: 2ms
memory: 8104kb

input:

8
22440147 22440147 22626721 22626721 22592252 22592252 19174074 19174074

output:

Yes
6005229 2739153 6191803 2739153 6157332 2739154 2739154 

result:

ok The answer is correct.

Test #48:

score: 15
Accepted
time: 1ms
memory: 6112kb

input:

8
12 0 13 8 18 18 18 0

output:

No

result:

ok The answer is correct.

Test #49:

score: 15
Accepted
time: 1ms
memory: 8144kb

input:

8
3 23 13 18 26 12 25 25

output:

No

result:

ok The answer is correct.

Test #50:

score: 15
Accepted
time: 0ms
memory: 7724kb

input:

8
1353255 1004808 981534 1400692 1246708 409750 1177255 1177255

output:

No

result:

ok The answer is correct.

Test #51:

score: 15
Accepted
time: 1ms
memory: 8024kb

input:

8
96 96 99 99 4 94 39 36

output:

No

result:

ok The answer is correct.

Test #52:

score: 15
Accepted
time: 1ms
memory: 7280kb

input:

8
15 21 0 20 20 15 13 6

output:

No

result:

ok The answer is correct.

Test #53:

score: 15
Accepted
time: 0ms
memory: 7740kb

input:

8
2 1 0 2 6 6 5 1

output:

No

result:

ok The answer is correct.

Test #54:

score: 15
Accepted
time: 1ms
memory: 7800kb

input:

8
7 12 11 11 1 11 4 11

output:

No

result:

ok The answer is correct.

Test #55:

score: 15
Accepted
time: 0ms
memory: 7180kb

input:

8
18 3 27 27 19 10 6 6

output:

No

result:

ok The answer is correct.

Subtask #3:

score: 13
Accepted

Dependency #2:

100%
Accepted

Test #56:

score: 13
Accepted
time: 1ms
memory: 7672kb

input:

14
10 10 2 30 45 50 50 47 47 47 46 33 33 32

output:

Yes
9 1 0 3 8 12 9 3 12 11 3 5 4 

result:

ok The answer is correct.

Test #57:

score: 13
Accepted
time: 1ms
memory: 6044kb

input:

14
0 19 19 16 16 4 0 36 36 36 36 31 31 26

output:

Yes
0 19 0 14 2 0 0 16 4 16 4 10 5 

result:

ok The answer is correct.

Test #58:

score: 13
Accepted
time: 1ms
memory: 6144kb

input:

14
37 38 38 37 28 27 27 28 28 10 17 17 12 4

output:

Yes
10 11 10 7 0 27 0 28 0 3 9 4 1 

result:

ok The answer is correct.

Test #59:

score: 13
Accepted
time: 0ms
memory: 8324kb

input:

14
13 27 33 33 30 30 31 31 20 20 25 25 24 24

output:

Yes
1 8 14 1 18 1 13 2 2 2 5 3 4 

result:

ok The answer is correct.

Test #60:

score: 13
Accepted
time: 1ms
memory: 7952kb

input:

14
50 50 52 52 54 60 62 62 62 33 33 28 34 34

output:

Yes
26 2 28 2 9 11 12 12 2 9 2 3 9 

result:

ok The answer is correct.

Test #61:

score: 13
Accepted
time: 2ms
memory: 7688kb

input:

14
5123 5321 5321 5600 5600 5161 5537 5537 5359 4679 4679 4128 4128 3029

output:

Yes
825 1023 324 1803 324 596 873 695 435 436 325 325 233 

result:

ok The answer is correct.

Test #62:

score: 13
Accepted
time: 1ms
memory: 6932kb

input:

14
340 2315 2315 2251 2251 1200 1366 1366 2831 2831 2864 2864 2812 2680

output:

Yes
27 2002 26 1165 112 113 279 112 569 406 528 476 410 

result:

ok The answer is correct.

Test #63:

score: 13
Accepted
time: 0ms
memory: 7952kb

input:

14
681 810 2276 2390 2390 1189 2424 2424 2031 1180 2548 2620 2620 221

output:

Yes
56 99 832 946 55 131 945 552 126 128 812 884 17 

result:

ok The answer is correct.

Test #64:

score: 13
Accepted
time: 1ms
memory: 7748kb

input:

14
37026886 40993600 44483477 44483477 41071802 57414984 57414984 60000010 60000010 64898381 64898381 63120240 63120240 58440430

output:

Yes
2848222 3178784 6668661 3178781 3187477 19530659 3187469 6394159 6394159 9212378 7434235 7434237 6082243 

result:

ok The answer is correct.

Test #65:

score: 13
Accepted
time: 1ms
memory: 7228kb

input:

14
49671403 50230564 50230564 63423001 63423001 62198273 62452752 62452752 44987219 48671053 49604115 49604115 20314360 20314360

output:

Yes
16241165 16800326 1562643 23729328 22504600 1562643 31364606 13899073 1562643 15740990 16674052 1562643 1562644 

result:

ok The answer is correct.

Test #66:

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

input:

14
17008521 17008521 17440120 44338597 44338597 42528453 45138523 45138523 43354927 34182290 34182290 33775196 33775196 32314840

output:

Yes
1308357 1308347 1347585 28246062 1347584 6362469 8559302 6775706 3580414 3580416 3206924 4667281 3206925 

result:

ok The answer is correct.

Test #67:

score: 13
Accepted
time: 1ms
memory: 6840kb

input:

14
17784224 17784224 16246661 3452639 30562832 30928394 31034175 31034175 17501619 21436456 21436456 5363633 5661668 5661668

output:

Yes
8200165 6662602 265587 265589 9302320 9485101 9590882 265587 6716781 10651618 647787 647788 945823 

result:

ok The answer is correct.

Test #68:

score: 13
Accepted
time: 0ms
memory: 7032kb

input:

14
69235639 69235639 68987597 68987597 57039158 57039158 55926434 63346321 63346321 66237443 66237443 64858399 62617841 60839024

output:

Yes
17611255 4302032 17363203 4302033 5414764 4302033 4302034 6205052 5476560 7975887 6596843 5476564 5120799 

result:

ok The answer is correct.

Test #69:

score: 13
Accepted
time: 0ms
memory: 7716kb

input:

14
87 74 86 89 86 79 79 14 37 9 33 33 38 38

output:

No

result:

ok The answer is correct.

Test #70:

score: 13
Accepted
time: 1ms
memory: 7160kb

input:

14
8 10 24 23 23 19 31 30 15 16 2 23 34 27

output:

No

result:

ok The answer is correct.

Test #71:

score: 13
Accepted
time: 1ms
memory: 6284kb

input:

14
72 72 72 64 72 62 15 15 42 42 6 26 43 25

output:

No

result:

ok The answer is correct.

Test #72:

score: 13
Accepted
time: 2ms
memory: 8068kb

input:

14
124 125 103 108 120 120 121 127 130 130 69 43 48 48

output:

No

result:

ok The answer is correct.

Test #73:

score: 13
Accepted
time: 1ms
memory: 6964kb

input:

14
18 3 16 11 11 24 24 25 25 10 14 17 13 10

output:

No

result:

ok The answer is correct.

Test #74:

score: 13
Accepted
time: 0ms
memory: 7696kb

input:

14
1432833 514825 398091 1958543 1337446 1729822 2090128 1970313 1970313 2487044 1900924 2317778 425241 425241

output:

No

result:

ok The answer is correct.

Test #75:

score: 13
Accepted
time: 1ms
memory: 6296kb

input:

14
24 3 0 31 31 23 9 15 21 25 21 25 27 27

output:

No

result:

ok The answer is correct.

Test #76:

score: 13
Accepted
time: 0ms
memory: 8592kb

input:

14
27 46 64 56 68 68 68 13 74 74 74 51 26 55

output:

No

result:

ok The answer is correct.

Subtask #4:

score: 25
Accepted

Dependency #1:

100%
Accepted

Test #77:

score: 25
Accepted
time: 9ms
memory: 9996kb

input:

49
28 28 28 24 37 37 33 36 36 29 43 43 41 41 29 48 51 51 44 49 50 50 9 9 15 18 18 3 17 17 9 13 17 17 13 13 0 6 6 16 21 25 25 19 7 19 19 17 4

output:

Yes
14 14 0 12 25 0 9 12 5 7 21 0 41 0 5 12 15 10 3 17 18 0 9 0 7 10 1 0 17 0 3 5 9 0 13 0 0 6 0 4 6 10 5 0 2 9 7 1 

result:

ok The answer is correct.

Test #78:

score: 25
Accepted
time: 7ms
memory: 10588kb

input:

49
3 3 29 29 31 31 34 34 34 34 31 22 22 21 21 21 36 36 37 42 42 41 22 22 6 6 19 37 65 71 71 77 78 78 76 76 42 46 46 40 60 60 60 60 60 60 6 6 4

output:

Yes
3 0 29 0 31 0 34 0 14 11 3 7 6 0 21 0 36 0 11 14 13 2 14 0 6 0 4 10 24 30 1 36 37 0 76 0 21 25 0 20 40 0 60 0 57 1 3 1 

result:

ok The answer is correct.

Test #79:

score: 25
Accepted
time: 7ms
memory: 10232kb

input:

49
18 18 18 16 16 59 61 64 64 57 57 78 78 78 78 81 92 92 92 92 89 81 47 64 64 63 59 65 65 63 52 52 34 34 33 8 13 13 17 17 14 16 19 19 13 13 18 18 18

output:

Yes
9 9 0 16 0 13 14 17 10 17 0 78 0 78 0 36 47 1 28 25 21 3 8 15 14 12 0 26 24 3 25 6 7 6 0 4 9 0 6 3 1 4 7 1 4 1 5 5 

result:

ok The answer is correct.

Test #80:

score: 25
Accepted
time: 8ms
memory: 10584kb

input:

50
43 47 47 42 42 41 51 51 57 62 62 61 58 58 67 67 68 68 63 68 68 67 71 71 76 76 76 76 76 76 48 48 48 48 36 36 33 33 4 8 8 6 6 11 11 3 3 10 10 10

output:

Yes
11 15 7 11 10 0 51 0 19 22 21 0 58 0 67 0 68 0 21 24 23 0 71 0 76 0 76 0 76 0 48 0 48 0 36 0 33 0 2 6 0 6 0 11 0 3 0 5 5 

result:

ok The answer is correct.

Test #81:

score: 25
Accepted
time: 9ms
memory: 10808kb

input:

49
12 14 14 16 16 10 18 32 32 30 30 0 0 5 5 4 0 9 9 18 18 18 30 41 43 43 39 39 35 24 26 27 27 6 6 13 13 19 22 22 21 21 44 44 43 43 33 33 31

output:

Yes
6 8 0 16 0 2 4 10 8 8 0 0 0 3 2 0 0 9 0 9 9 0 5 8 10 7 7 6 0 8 9 10 0 6 0 1 1 4 7 1 2 2 20 3 16 4 6 4 

result:

ok The answer is correct.

Test #82:

score: 25
Accepted
time: 4ms
memory: 9092kb

input:

48
13 13 11 3 36 40 40 40 36 35 35 30 18 18 33 33 33 23 20 20 17 19 20 20 0 10 31 31 28 30 30 5 16 16 13 12 12 36 39 39 37 37 25 25 26 26 7 7

output:

Yes
7 5 1 0 9 11 11 9 0 20 15 0 14 1 12 12 7 0 7 4 3 5 6 0 0 5 26 0 14 16 0 1 7 4 2 5 0 18 21 0 19 4 5 5 6 1 1 

result:

ok The answer is correct.

Test #83:

score: 25
Accepted
time: 9ms
memory: 10184kb

input:

49
72 72 71 33 98 98 89 89 174 174 163 163 170 170 82 98 98 202 202 179 164 282 299 299 316 316 300 262 250 250 236 154 140 148 150 150 148 148 131 95 95 106 106 108 108 81 78 78 51

output:

Yes
31 30 11 0 55 1 46 1 131 1 120 1 127 1 20 36 1 63 40 4 18 77 94 5 83 67 48 7 67 53 12 5 9 13 15 6 23 6 1 52 1 37 6 36 9 6 9 2 

result:

ok The answer is correct.

Test #84:

score: 25
Accepted
time: 10ms
memory: 10080kb

input:

50
148 360 360 392 392 399 399 384 350 350 346 346 306 306 314 314 346 346 323 321 174 293 299 304 342 342 340 328 328 227 227 192 330 339 339 318 327 327 326 266 266 182 204 204 67 67 79 79 85 85

output:

Yes
18 230 14 79 77 86 75 1 302 1 298 1 258 1 266 1 86 63 62 13 8 27 28 29 43 41 35 35 10 54 19 1 134 143 2 86 91 90 2 202 2 60 82 2 3 2 7 6 13 

result:

ok The answer is correct.

Test #85:

score: 25
Accepted
time: 11ms
memory: 10648kb

input:

48
200 224 224 200 267 267 259 231 246 246 215 215 196 184 180 180 270 270 270 234 230 233 233 186 114 165 165 160 190 212 212 243 243 239 239 143 143 162 162 262 264 264 246 234 238 238 22 22

output:

Yes
100 124 0 17 47 39 22 25 40 7 40 21 15 9 23 9 47 47 29 11 35 38 13 0 57 108 0 29 37 59 36 91 1 220 1 124 1 143 1 49 51 41 37 36 44 1 3 

result:

ok The answer is correct.

Test #86:

score: 25
Accepted
time: 7ms
memory: 9364kb

input:

49
226 226 216 196 196 158 193 253 253 257 257 257 201 300 300 320 384 392 392 385 385 263 291 291 269 287 287 277 277 487 487 497 497 496 482 507 511 511 503 331 152 173 189 214 214 232 232 221 191

output:

Yes
49 39 3 48 10 3 14 74 12 46 46 3 10 33 29 37 69 77 8 167 45 3 150 3 20 38 10 16 12 181 17 49 48 39 40 49 53 47 18 3 4 7 11 36 9 37 26 11 

result:

ok The answer is correct.

Test #87:

score: 25
Accepted
time: 11ms
memory: 9340kb

input:

49
247 247 231 383 383 381 379 398 398 397 391 195 200 227 227 197 197 339 339 337 344 344 379 388 388 379 343 405 405 412 412 402 402 412 412 398 398 415 430 430 382 382 384 384 341 198 122 124 124

output:

Yes
153 2 47 124 122 2 63 71 70 67 17 10 30 57 2 103 2 245 2 40 47 35 51 60 51 39 2 311 2 318 2 308 2 304 3 226 10 73 88 31 76 33 77 34 12 4 3 16 

result:

ok The answer is correct.

Test #88:

score: 25
Accepted
time: 11ms
memory: 9460kb

input:

48
196 196 284 284 280 280 263 303 387 387 388 388 343 321 321 328 328 283 283 151 157 157 164 164 198 203 203 172 166 178 259 280 294 294 288 243 239 239 235 226 226 330 333 333 302 287 295 295

output:

Yes
58 3 146 3 142 3 22 42 126 16 91 46 35 35 3 190 3 145 3 8 14 3 26 3 20 25 7 5 5 7 24 31 41 35 20 4 48 44 3 18 13 43 46 29 24 24 32 

result:

ok The answer is correct.

Test #89:

score: 25
Accepted
time: 8ms
memory: 9760kb

input:

48
244 256 256 248 253 253 269 269 250 229 229 67 252 322 261 116 372 271 372 322 333 333 393 429 429 428 347 319 294 387 234 352 370 370 317 37 193 398 10 76 215 222 222 208 344 145 171 87

output:

No

result:

ok The answer is correct.

Test #90:

score: 25
Accepted
time: 3ms
memory: 9856kb

input:

50
34 15 33 66 66 66 33 39 9 35 55 29 34 35 51 13 50 50 56 48 44 43 57 57 57 25 50 50 27 27 21 47 35 50 50 55 55 53 7 43 37 55 55 62 62 62 52 21 26 26

output:

No

result:

ok The answer is correct.

Test #91:

score: 25
Accepted
time: 8ms
memory: 9848kb

input:

49
47 64 64 64 59 74 74 3 72 19 67 71 25 61 61 58 50 49 49 58 62 70 70 69 51 70 62 62 62 62 62 54 8 41 41 41 19 40 40 20 8 24 24 20 16 16 16 19 19

output:

No

result:

ok The answer is correct.

Test #92:

score: 25
Accepted
time: 9ms
memory: 9664kb

input:

48
13 13 10 27 27 28 28 18 29 29 26 24 31 31 30 26 12 12 0 0 0 42 42 38 38 38 37 37 27 27 26 60 60 68 70 70 67 67 70 70 67 67 48 49 49 47 47 44

output:

Yes
13 0 5 22 0 19 9 0 12 9 8 0 11 10 8 1 8 0 0 0 0 17 1 7 7 1 12 1 2 1 1 20 2 15 17 2 27 2 30 2 27 2 5 6 2 6 3 

result:

ok The answer is correct.

Test #93:

score: 25
Accepted
time: 6ms
memory: 9964kb

input:

50
22 22 14 24 27 27 25 25 10 47 47 45 41 42 42 44 44 43 43 0 32 32 30 27 27 10 10 14 14 14 4 11 11 9 23 23 20 28 28 22 29 31 1 28 30 30 30 30 27 27

output:

No

result:

ok The answer is correct.

Test #94:

score: 25
Accepted
time: 5ms
memory: 10836kb

input:

49
45 69 69 73 73 73 69 69 34 34 31 47 51 54 54 58 58 56 56 53 42 42 10 10 4 7 7 60 61 61 63 63 64 66 66 62 34 49 49 49 46 40 38 43 43 13 13 10 10

output:

No

result:

ok The answer is correct.

Test #95:

score: 25
Accepted
time: 6ms
memory: 8492kb

input:

48
17 17 16 16 0 27 29 32 32 36 36 39 39 35 33 21 23 23 46 46 46 46 38 38 36 36 34 34 31 33 33 36 36 30 30 28 28 23 19 19 33 37 37 15 38 39 39 0

output:

No

result:

ok The answer is correct.

Test #96:

score: 25
Accepted
time: 6ms
memory: 9920kb

input:

49
18 25 25 24 30 31 31 32 32 31 27 43 43 48 48 53 53 51 39 48 48 47 47 11 11 53 28 24 24 23 21 24 24 24 24 19 38 39 39 38 38 39 42 42 41 36 39 39 37

output:

No

result:

ok The answer is correct.

Subtask #5:

score: 17
Accepted

Dependency #1:

100%
Accepted

Dependency #2:

100%
Accepted

Dependency #3:

100%
Accepted

Dependency #4:

100%
Accepted

Test #97:

score: 17
Accepted
time: 9ms
memory: 9892kb

input:

49
35 35 43 43 40 52 54 54 52 52 31 11 0 11 27 27 25 25 25 29 29 25 25 23 23 17 17 17 22 22 11 6 0 24 24 36 43 43 43 39 8 8 6 6 0 21 27 27 27

output:

Yes
7 3 8 5 4 8 10 7 9 3 1 0 0 4 20 1 11 11 0 29 0 25 0 23 0 5 3 4 9 2 1 0 0 24 0 9 12 12 10 0 8 0 6 0 0 7 10 10 

result:

ok The answer is correct.

Test #98:

score: 17
Accepted
time: 8ms
memory: 9860kb

input:

49
53 53 65 68 68 70 75 75 70 75 75 66 66 61 61 61 61 79 81 81 87 87 87 84 85 85 80 69 69 73 73 77 77 77 23 23 28 32 32 32 28 28 35 35 31 25 28 28 14

output:

Yes
53 0 10 13 5 10 15 10 5 22 6 12 7 0 61 0 11 20 22 2 23 23 3 13 14 11 5 12 4 8 8 10 10 0 10 1 3 5 5 2 5 2 9 5 2 2 5 1 

result:

ok The answer is correct.

Test #99:

score: 17
Accepted
time: 4ms
memory: 9572kb

input:

50
3 3 28 29 29 22 22 30 32 34 34 33 39 39 35 17 29 30 30 29 29 27 27 23 23 40 40 82 82 81 81 78 80 80 80 61 61 56 68 69 69 68 50 36 13 13 7 7 14 14

output:

Yes
3 0 14 15 0 22 0 10 11 13 0 11 16 12 0 5 11 12 1 25 0 27 0 23 0 40 0 82 0 81 0 17 18 18 3 11 6 6 10 11 10 5 3 0 9 1 3 1 10 

result:

ok The answer is correct.

Test #100:

score: 17
Accepted
time: 10ms
memory: 9612kb

input:

49
39 39 35 29 36 45 45 45 45 40 41 47 47 47 16 16 16 16 17 17 18 20 20 33 43 55 55 73 73 75 76 76 69 63 63 42 42 42 48 50 50 41 41 42 44 44 4 11 11

output:

Yes
10 6 3 2 7 16 2 10 5 4 5 8 8 0 16 0 16 0 17 0 9 11 0 11 16 28 0 73 0 26 27 23 0 63 0 42 0 14 17 19 0 41 0 21 23 0 2 9 

result:

ok The answer is correct.

Test #101:

score: 17
Accepted
time: 10ms
memory: 8464kb

input:

48
98 101 165 185 185 516 520 550 550 390 386 645 668 668 676 676 691 691 677 658 658 521 553 553 525 464 406 476 513 513 414 414 464 501 501 492 590 590 591 591 462 462 416 200 266 278 304 304

output:

Yes
3 4 36 56 2 99 101 131 57 4 30 67 75 70 74 73 88 74 4 484 4 63 93 65 44 25 29 64 101 28 39 4 61 98 58 75 173 5 403 5 160 114 6 6 28 34 60 

result:

ok The answer is correct.

Test #102:

score: 17
Accepted
time: 11ms
memory: 10088kb

input:

48
233 233 353 558 565 565 529 529 458 323 400 456 501 501 517 517 339 373 373 335 335 419 419 395 334 334 340 340 295 147 147 362 362 377 377 379 379 264 264 251 152 152 70 162 208 208 198 198

output:

Yes
187 1 52 106 113 90 93 73 1 47 64 92 137 60 189 1 147 181 1 289 1 199 175 1 266 2 132 87 7 10 8 134 21 149 21 151 21 35 22 2 84 2 2 25 47 37 37 

result:

ok The answer is correct.

Test #103:

score: 17
Accepted
time: 7ms
memory: 9332kb

input:

49
842 842 917 917 927 927 929 930 930 745 745 613 576 576 560 815 815 893 907 937 937 869 883 883 883 883 848 848 729 780 780 803 803 800 800 561 561 560 629 629 627 627 585 634 634 643 655 655 388

output:

Yes
513 7 543 8 553 8 214 215 53 188 56 8 202 8 97 352 8 72 79 109 64 62 84 39 196 40 160 41 8 406 8 429 8 426 8 187 8 97 166 8 253 8 49 98 48 78 90 9 

result:

ok The answer is correct.

Test #104:

score: 17
Accepted
time: 10ms
memory: 10116kb

input:

50
649 765 765 751 765 765 898 898 955 955 941 941 995 995 978 916 881 881 844 768 740 740 735 661 652 605 605 586 586 560 465 465 411 492 492 428 428 385 477 477 594 594 564 564 497 526 526 515 463 463

output:

Yes
160 276 7 211 225 7 562 7 619 7 605 7 176 159 128 24 147 110 72 28 77 72 35 32 24 25 8 124 98 8 93 8 16 97 15 34 9 8 35 15 152 15 102 35 15 54 43 16 18 

result:

ok The answer is correct.

Test #105:

score: 17
Accepted
time: 10ms
memory: 10240kb

input:

50
9757021 9757021 9279087 10211787 10211787 13159399 13159399 12592915 12592915 10743184 10743184 11075654 13281929 13281929 13197920 13365343 14008687 14515635 14515635 14452939 12634082 15780207 15780207 15663442 15196550 13950446 12389587 12774326 12774326 10499331 10499331 10443669 4834240 4834...

output:

Yes
5844301 81515 2723941 3656641 81515 9246636 81516 8680152 81516 6830421 81516 966691 2111833 2027824 966686 1539112 1753560 2038382 1975686 81516 1529633 2624303 2507538 2274092 1858724 1480734 81516 8861563 81516 3361873 3306211 81516 509814 493179 81516 277118 81516 81518 4688852 81516 2271564...

result:

ok The answer is correct.

Test #106:

score: 17
Accepted
time: 11ms
memory: 9692kb

input:

49
3140091 4599712 4599712 4306933 3855850 3855850 3982474 3982474 12583623 15412358 15412358 15121551 15112361 14133071 14270248 14270248 14074890 14460929 14460929 9136003 12828613 12828613 12718829 11763511 10600063 14347165 15864793 15864793 16488871 16505450 16505450 12803475 12803475 12075780 ...

output:

Yes
65427 941627 648848 65418 81723 81685 84732 84700 706061 1586135 1295328 1290733 964303 964301 1101486 213538 2683002 3069041 213538 213542 1676821 1567037 1089378 213539 620377 2493928 4011556 225137 3762401 3778980 225137 3614269 225137 1162796 1778988 1011256 225137 618526 806977 806974 96651...

result:

ok The answer is correct.

Test #107:

score: 17
Accepted
time: 7ms
memory: 9548kb

input:

48
7860438 12158478 13753704 13771006 13771006 18767757 18927795 18968593 18968593 18560763 18649287 18649287 18224800 18224800 15243518 15243518 15175681 9471368 9471368 8990283 8990283 7894916 7633966 8802718 8802718 3876185 3876185 3822869 3822869 1212984 3582842 3582842 5846236 7012301 7012301 7...

output:

Yes
395113 1827793 2625406 2642708 395111 1952874 2032893 2073691 1883876 1037602 4511212 1037604 4086725 1037604 1105442 1037605 519029 519033 25808 4462145 3366778 25808 3236303 4405055 25808 2689017 25808 2635701 25808 25812 2395670 25808 447990 739507 739506 1088545 816557 278043 1530463 278044 ...

result:

ok The answer is correct.

Test #108:

score: 17
Accepted
time: 7ms
memory: 9324kb

input:

50
8562640 8562640 8791060 8953930 9955044 9955044 9558730 7820204 7504730 7504730 12381579 12439159 12439159 10733532 10733532 11677206 12477244 12477244 11307156 11046660 13033970 13033970 12141178 15057332 16705610 16782829 16782829 15921686 15014152 14466729 14582484 14582484 15253074 15253074 1...

output:

Yes
1726816 142413 523436 577726 1276440 880126 280722 217624 217640 142413 2844084 2901664 142413 3897708 142413 1770411 2570449 1585386 142413 1498554 2938605 2045813 142413 1760391 2440471 2517690 2048509 1749596 142413 3886659 4002414 142413 8417250 142413 2373938 3604167 142413 2877677 3813706 ...

result:

ok The answer is correct.

Test #109:

score: 17
Accepted
time: 6ms
memory: 8420kb

input:

50
16 26 54 22 22 25 25 37 37 37 36 36 34 35 35 51 6 11 9 36 12 12 23 3 49 49 48 23 47 47 11 11 18 7 44 44 5 44 44 18 5 52 57 20 57 48 52 53 0 0

output:

No

result:

ok The answer is correct.

Test #110:

score: 17
Accepted
time: 8ms
memory: 8736kb

input:

48
10 30 28 54 46 32 14 14 16 16 25 25 58 40 40 37 55 20 63 59 61 61 53 53 53 50 50 42 42 21 21 36 24 16 36 19 60 28 30 30 22 36 35 12 31 31 26 23

output:

No

result:

ok The answer is correct.

Test #111:

score: 17
Accepted
time: 4ms
memory: 9244kb

input:

48
5092766 5227138 5227138 5238104 7971031 7971031 7903225 7197892 7197892 6605419 2479643 2479643 9424971 9554015 9554015 10267184 13617473 9605729 10316478 10316478 14221231 2075244 7396399 15160740 15505829 15505829 15796933 6369046 1709256 14327010 14327010 14114028 5147104 9312032 9312032 15981...

output:

No

result:

ok The answer is correct.

Test #112:

score: 17
Accepted
time: 6ms
memory: 8328kb

input:

49
8884683 8884683 9151162 9151162 7571437 7571437 10077005 10077005 11445047 11445047 11861700 11861700 11795572 10927878 2505781 2855773 4458081 4458081 4106198 3325132 6504551 6504551 9625607 7059089 8322561 8322561 7631437 6776593 7507105 7507105 7015845 3624049 5711859 5711859 5688065 5688065 5...

output:

No

result:

ok The answer is correct.

Test #113:

score: 17
Accepted
time: 8ms
memory: 9032kb

input:

48
16 24 24 26 26 26 32 32 30 26 26 32 34 34 29 29 26 30 30 20 5 5 27 39 39 76 39 59 67 67 66 66 77 80 80 79 79 75 65 77 77 85 85 85 85 65 0 0

output:

No

result:

ok The answer is correct.

Test #114:

score: 17
Accepted
time: 11ms
memory: 10252kb

input:

50
7744445 8225578 8900877 8900877 13083017 13083017 12156080 12945934 12945934 14277370 14331387 14331387 12887705 12887705 12977812 12977812 9845822 7720338 7720338 7506879 7506879 9795777 9795777 8982663 8492451 8864389 9088182 9088182 10244216 10444212 10809269 10809269 6897821 11852797 11852797...

output:

No

result:

ok The answer is correct.

Test #115:

score: 17
Accepted
time: 6ms
memory: 9252kb

input:

48
37 42 42 71 71 71 74 74 78 78 83 83 86 86 90 90 92 92 81 81 81 81 81 63 70 70 72 72 7 64 63 63 58 58 55 69 69 66 66 63 61 62 62 55 55 55 47 47

output:

No

result:

ok The answer is correct.

Test #116:

score: 17
Accepted
time: 10ms
memory: 10080kb

input:

48
51 13 13 8 8 35 35 33 27 34 34 34 31 31 34 53 53 52 52 52 34 34 58 62 62 60 60 57 57 56 40 43 43 17 17 17 17 17 17 14 17 17 15 25 28 28 28 28

output:

No

result:

ok The answer is correct.

Subtask #6:

score: 19
Accepted

Dependency #1:

100%
Accepted

Dependency #2:

100%
Accepted

Dependency #3:

100%
Accepted

Dependency #4:

100%
Accepted

Dependency #5:

100%
Accepted

Test #117:

score: 19
Accepted
time: 56ms
memory: 9968kb

input:

79
19 19 22 22 53 54 54 51 42 42 42 46 54 56 56 57 57 0 60 60 57 58 58 60 60 43 36 44 46 46 36 51 62 62 73 73 73 73 66 66 78 78 75 75 70 70 72 72 71 66 66 64 76 76 76 70 70 66 53 53 61 61 62 63 63 64 74 74 72 74 74 6 13 13 6 0 7 7 0

output:

Yes
19 0 22 0 18 19 17 0 21 21 0 10 14 16 8 25 0 0 60 0 18 19 7 28 11 0 9 13 15 9 0 3 14 3 12 4 12 4 5 4 17 4 14 4 6 5 7 6 0 66 0 13 19 19 5 19 15 8 9 0 61 0 31 32 0 32 42 0 36 38 0 2 9 2 0 0 7 0 

result:

ok The answer is correct.

Test #118:

score: 19
Accepted
time: 62ms
memory: 9928kb

input:

79
282 282 272 272 262 262 225 283 295 295 470 503 503 481 481 482 482 537 579 637 637 635 611 611 589 232 244 244 575 617 617 583 750 760 763 763 723 323 460 460 472 499 499 456 251 612 665 665 658 658 728 1048 1048 1036 1062 1081 1081 993 993 1036 1047 1047 1042 1042 936 379 386 510 510 510 452 54...

output:

Yes
205 1 195 1 185 1 50 79 91 1 197 230 1 404 1 405 1 67 81 111 109 66 116 94 1 78 90 1 155 197 22 76 120 125 128 111 24 23 166 1 135 162 127 1 10 45 75 68 42 51 86 406 49 177 190 209 6 161 100 152 163 100 208 102 21 20 25 87 87 1 124 170 167 2 8 94 7 67 

result:

ok The answer is correct.

Test #119:

score: 19
Accepted
time: 89ms
memory: 10536kb

input:

79
842 860 860 800 821 821 776 852 852 826 526 537 537 613 613 591 695 714 714 612 612 759 759 766 767 767 862 879 879 812 811 811 691 742 742 709 570 570 727 727 715 715 715 639 744 744 688 718 718 660 662 662 914 924 924 931 957 968 968 700 516 516 790 874 874 838 832 840 840 752 752 802 802 763 7...

output:

Yes
193 211 6 172 193 6 97 148 122 13 14 25 13 102 6 47 99 118 6 150 6 297 6 155 156 6 101 118 76 73 81 6 66 108 75 7 63 7 220 7 70 70 32 32 137 7 94 124 7 80 82 7 142 152 33 111 124 135 34 7 9 7 60 120 84 16 98 106 17 99 17 149 17 110 17 17 17 40 

result:

ok The answer is correct.

Test #120:

score: 19
Accepted
time: 81ms
memory: 10780kb

input:

79
329 329 281 249 404 420 420 369 369 392 392 557 557 575 575 550 518 596 617 617 622 622 434 471 471 432 348 417 455 455 455 431 431 417 389 389 657 657 757 757 801 801 781 799 832 832 813 617 417 518 518 515 800 800 803 897 897 892 892 741 741 708 708 784 784 913 913 909 893 854 854 721 721 739 7...

output:

Yes
72 24 8 3 52 68 4 65 4 88 4 253 4 150 125 4 74 113 134 4 318 4 43 80 42 14 4 21 40 40 7 39 25 10 12 5 262 6 362 6 406 6 89 95 121 102 48 8 8 109 6 13 298 10 69 163 18 209 18 58 18 25 18 87 19 90 86 78 19 157 19 24 19 26 23 29 28 31 

result:

ok The answer is correct.

Test #121:

score: 19
Accepted
time: 83ms
memory: 10524kb

input:

80
280 343 343 314 346 400 400 374 700 703 703 701 775 781 785 785 709 568 568 428 487 487 465 534 534 690 690 707 707 875 880 880 865 865 671 693 693 634 634 419 248 271 271 425 425 420 446 446 440 404 463 463 450 211 211 588 607 607 596 596 476 468 468 312 312 400 696 696 707 707 665 639 639 581 6...

output:

Yes
63 126 2 54 70 124 2 74 237 240 2 89 113 116 120 91 56 88 2 137 196 2 40 109 35 75 74 80 78 163 168 2 709 2 237 259 3 326 111 3 12 20 17 98 93 3 94 88 70 3 137 124 4 5 4 193 212 3 212 92 8 168 8 12 8 18 314 14 116 74 31 90 32 31 48 38 37 46 69 

result:

ok The answer is correct.

Test #122:

score: 19
Accepted
time: 82ms
memory: 10672kb

input:

79
4344566 4344566 4392490 4392490 3661350 8301250 8550653 8550653 8227586 8029005 8029005 8676001 8676001 8637017 7388113 7388113 7066469 6721808 6721808 6822410 7510966 7510966 7330185 7603857 7781551 7781551 6425568 6425568 8798124 8798124 8526926 8548356 8548356 7034606 6115554 6485901 6613093 6...

output:

Yes
730186 46940 778110 46940 46945 1023503 1272906 986671 920474 920484 46940 1274172 1235188 449911 771558 449914 69364 1627444 69364 898705 1587261 69364 686363 823199 1000893 384824 69364 700284 3072840 69364 1439150 1460580 692990 69364 205340 328789 392385 535302 205338 1491886 2476985 69364 1...

result:

ok The answer is correct.

Test #123:

score: 19
Accepted
time: 94ms
memory: 9860kb

input:

80
4001784 5031118 5031118 4954008 4834368 5110383 6054273 6127588 6127588 4737880 5565252 5565252 5112865 5112865 3175750 3668523 3668523 3126372 6125234 6191811 6191811 5259774 4874618 5401246 5401246 4473366 4473366 3879108 6428238 6531556 6531556 6446736 5392707 5392707 8336909 8685073 9355583 9...

output:

Yes
258672 811894 734784 258670 387950 479955 951900 1025215 363828 363826 1191208 17006 3786331 17007 635973 1128746 611284 17007 1755148 1821725 1322418 17007 1021876 1548504 524120 1118379 524121 17007 1711906 1805975 1721155 17007 4066173 17007 1005041 1092082 1320485 1455023 1305786 588396 5109...

result:

ok The answer is correct.

Test #124:

score: 19
Accepted
time: 75ms
memory: 10316kb

input:

78
7171858 7518898 7518898 6920968 6778162 6702376 6702376 6184460 6795806 7054432 7445914 7445914 4071004 4112391 4112391 4364260 4364260 3568715 3536239 2932567 2998165 2998165 4710702 4710702 4463635 5731834 5731834 5710338 5710338 5703023 3548998 3548998 2592923 2249556 2673412 2763857 2763857 2...

output:

Yes
1001106 1348146 875661 828059 809111 809117 26024 1071177 1274959 1404272 1795754 26024 1059602 1100989 26024 1348604 553059 536821 26024 211769 277367 211767 1224370 977303 26024 3754010 26024 1467186 1459871 382857 382860 143839 26024 87451 277635 368080 130939 26024 331992 1072799 26024 26030...

result:

ok The answer is correct.

Test #125:

score: 19
Accepted
time: 86ms
memory: 10796kb

input:

80
3407223 3407223 3228519 3293117 5125209 5125209 4785524 5167120 5167120 3397982 4768600 4768600 7045049 7080483 7080483 6781759 6564089 6564089 6621981 6621981 6081502 3654410 3545216 4053900 4053900 2999936 1886570 1435112 3126790 3126790 5461254 5574059 5574059 5347721 5420627 5426621 5426621 2...

output:

Yes
1990353 18165 107844 140143 1972235 107835 812200 1193796 118428 118429 1489047 118428 1343648 1379082 1212003 133150 3152029 133152 1923576 1383097 169551 133153 18166 1779299 725335 168652 18166 18166 398294 44397 1388575 1501380 44398 902670 939123 945117 44403 44397 2133536 106648 987805 137...

result:

ok The answer is correct.

Test #126:

score: 19
Accepted
time: 52ms
memory: 10772kb

input:

79
41 41 40 26 44 25 47 1 32 16 43 43 13 42 28 31 86 0 79 79 81 81 73 87 87 87 87 43 82 82 73 60 65 65 65 49 49 49 49 53 59 65 66 66 47 52 29 39 31 44 50 33 6 6 26 26 28 79 64 43 67 67 67 60 43 43 44 44 49 49 49 37 9 9 12 17 25 16 16

output:

No

result:

ok The answer is correct.

Test #127:

score: 19
Accepted
time: 55ms
memory: 9844kb

input:

80
12989592 12991065 12991065 12680716 16474396 16564984 16564984 16638476 16638476 15406546 15272805 14235541 15900663 14062541 11807081 15261721 15473740 15473740 7211952 14656228 15230209 15230209 14658676 14429600 14987839 15293734 3279039 15857991 15491876 15752775 15758624 2258554 13498858 676...

output:

No

result:

ok The answer is correct.

Test #128:

score: 19
Accepted
time: 49ms
memory: 10280kb

input:

78
8989436 8989436 9257286 9571614 9571614 7924809 9127152 7724396 6510796 8717614 4919875 5952458 6133678 6505828 6505828 6403694 9836248 6526230 9546166 9451195 9451195 9360756 8875608 7454100 6619118 9790658 9016513 9744135 9782589 9782589 7524358 8565780 8565780 8725953 8897218 8897218 8657751 7...

output:

No

result:

ok The answer is correct.

Test #129:

score: 19
Accepted
time: 56ms
memory: 10492kb

input:

79
14 18 18 6 28 28 28 24 16 16 38 39 39 38 20 16 24 24 24 24 24 24 26 26 21 21 20 20 20 18 19 19 10 59 59 58 54 56 56 43 52 34 34 16 16 14 10 24 24 23 13 18 19 19 9 9 41 53 53 57 58 58 36 48 48 54 54 54 52 17 18 18 9 21 21 31 33 33 29

output:

No

result:

ok The answer is correct.

Test #130:

score: 19
Accepted
time: 52ms
memory: 9472kb

input:

78
1176077 1812394 1812394 2688716 2688716 2585370 1359834 2380971 2380971 2379244 1031088 3727030 7971496 7971496 7614594 8317387 8317387 7832498 7984236 7984236 8089704 9220509 9220509 9209420 8459214 7787160 4433778 4433778 4078414 7618043 10009049 10009049 10015442 10015442 9887462 8302458 74290...

output:

No

result:

ok The answer is correct.

Test #131:

score: 19
Accepted
time: 65ms
memory: 9692kb

input:

79
3320325 3320325 3214910 7797215 4672431 4672431 4248536 6437810 6437810 5876824 5876824 6818791 6818791 6733856 7194230 7194230 5902019 5902019 5717788 7237502 7237502 7007635 7344622 7344622 8438997 8487937 8487937 8243423 5186689 7011248 7011248 7137048 7137048 6810662 6810662 6551287 5136245 6...

output:

No

result:

ok The answer is correct.

Test #132:

score: 19
Accepted
time: 70ms
memory: 10560kb

input:

78
2473925 4383788 4383788 3909900 4297454 4307319 4307319 2318855 3560720 3560720 3255273 3218197 7206973 7206973 7724580 7724580 8481860 8614365 8614365 8040007 8040007 5701146 8528813 8528813 8500703 8500703 9574940 9732660 10542957 10542957 10377410 10381110 10381110 9324218 9324218 5227694 5227...

output:

Yes
55960 817043 343155 343155 536932 546797 30115 30115 736905 431458 32111 412920 4401696 32111 5300112 32111 2071382 2203887 681024 3019886 681025 32111 6104345 32111 6076235 32111 2404898 2483758 3294055 32111 2137061 2140761 1610465 1610465 586334 32111 340014 730233 1036098 1292787 1102929 730...

result:

ok The answer is correct.

Test #133:

score: 19
Accepted
time: 74ms
memory: 9588kb

input:

78
7017053 7201667 7201667 5861085 4841157 6544604 7432894 7432894 7233462 6955746 6955746 7019589 7019589 6899007 7189181 7189181 6478031 6700193 8868742 8868742 8867831 8830275 8770884 8113988 6673663 6673663 5735854 6588043 6588043 6309470 4806016 4806016 6086359 6086359 6115792 6115792 6071123 6...

output:

Yes
1982377 2166991 1404393 22269 306486 647177 1191038 991606 647173 1058327 306485 941531 820949 820949 1111123 22270 551521 588548 1075017 1074106 1055328 1035531 871307 551514 747195 22270 1362626 1928007 1649434 22270 3113500 22270 4393843 22270 4423276 22270 4378607 22270 1485786 1279936 75078...

result:

ok The answer is correct.

Test #134:

score: 19
Accepted
time: 61ms
memory: 10524kb

input:

78
66 66 84 87 87 88 100 100 102 103 103 88 96 96 96 96 87 97 100 100 97 91 115 115 121 121 120 120 119 112 112 101 92 70 72 72 74 74 74 66 66 64 64 59 59 60 65 65 64 62 62 17 17 16 6 0 22 22 21 21 6 8 11 11 30 30 28 33 33 31 44 44 43 45 45 30 30 0

output:

Yes
66 0 42 45 0 44 56 0 51 52 0 44 52 0 96 0 13 16 19 16 14 11 49 0 121 0 23 22 11 24 13 10 4 7 9 6 9 9 5 8 0 64 0 59 0 20 23 22 0 62 0 8 7 2 0 0 22 0 21 0 2 3 6 0 8 2 4 9 2 4 17 3 10 12 2 8 0 

result:

ok The answer is correct.

Test #135:

score: 19
Accepted
time: 60ms
memory: 10532kb

input:

80
20 20 58 61 63 64 64 61 61 60 58 58 49 49 44 44 45 45 30 35 35 24 41 41 40 40 28 29 39 39 45 45 45 19 19 8 8 38 38 38 46 46 46 47 47 32 37 37 41 41 38 32 41 43 43 43 46 46 20 26 38 39 39 30 32 32 46 46 45 48 52 52 52 32 32 27 20 21 21 18

output:

Yes
20 0 10 11 12 13 6 16 15 0 58 0 49 0 44 0 45 0 15 20 0 12 29 0 26 14 0 7 17 5 15 15 0 19 0 8 0 38 0 19 27 0 23 24 0 16 21 0 22 19 0 8 11 12 12 0 46 0 5 7 13 14 0 15 17 0 46 0 9 10 12 12 3 11 6 0 7 8 6 

result:

ok The answer is correct.

Test #136:

score: 19
Accepted
time: 61ms
memory: 10604kb

input:

78
0 2 2 17 31 31 31 23 23 19 19 22 23 23 18 18 10 10 8 26 26 26 26 25 34 34 33 18 18 33 33 35 38 38 31 35 35 36 36 36 32 32 28 34 46 46 46 51 51 48 52 52 48 48 53 58 58 57 59 59 59 59 50 37 37 45 45 50 54 54 52 47 45 47 47 36 36 36

output:

Yes
0 2 0 5 12 12 1 19 0 19 0 11 12 0 18 0 10 0 4 22 0 26 0 7 12 11 2 10 0 33 0 10 13 5 8 12 0 18 18 0 32 0 7 9 15 15 0 22 1 10 14 1 19 1 6 9 8 5 14 1 20 11 1 8 1 8 2 5 8 6 4 2 5 7 1 4 4 

result:

ok The answer is correct.

Extra Test:

score: 0
Extra Test Passed