QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#143082#6667. Prosjekpenguinman#39 235ms51696kbC++176.4kb2023-08-20 15:37:142024-07-04 02:40:51

Judging History

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

  • [2024-07-04 02:40:51]
  • 评测
  • 测评结果:39
  • 用时:235ms
  • 内存:51696kb
  • [2023-08-20 15:37:14]
  • 提交

answer

#include <bits/stdc++.h>

using std::cin;
using std::cout;
using std::endl;
using std::vector;
using std::string;
using ll = long long;
using vi = vector<ll>;
using vii = vector<vi>;
using pii = std::pair<ll,ll>;

#define ln "\n"
#define pb emplace_back
#define mp std::make_pair
#define mtp std::make_tuple
#define rep(i,j,k) for(ll i=ll(j); i<ll(k); i++)
#define REP(i,j,k) for(ll i=ll(j); i<=ll(k); i++)
#define per(i,j,k) for(ll i=ll(j); i>=ll(k); i--)
#define all(a) a.begin(),a.end()

constexpr ll inf = (1ll<<60);
constexpr ll mod = 1e9+7;
constexpr ll mul = 23;

void dec(std::map<ll,ll> &mem, ll el){
    mem[el]--;
    if(mem[el] == 0) mem.erase(el);
}

void subtask2(ll N, vi A){
    constexpr ll maxi = 11;
    vi cnt(maxi);
    rep(i,0,N) cnt[A[i]]++;
    vi mul(maxi+1,1);
    rep(i,0,maxi) mul[i+1] = mul[i]*4;
    ll M = mul[maxi];
    vi dp(M,-1);
    vi a, b;
    std::function<bool(ll)> dfs = [&](ll now){
        if(dp[now] != -1) return bool(dp[now]);
        vi v(maxi);
        ll nvv = now;
        rep(i,0,maxi){
            v[i] = nvv%4;
            nvv /= 4;
        }
        ll total = 0;
        rep(i,0,maxi){
            total += v[i];
        }
        dp[now] = 1;
        if(total == 1) return true;
        rep(i,0,maxi){
            if(v[i] >= 2){
                bool flag = dfs(now-mul[i]);
                if(flag){
                    a.pb(i);
                    b.pb(i);
                    dp[now] = 1;
                    return true;
                }
            }
            rep(j,i+1,maxi){
                if(v[i] == 0 || v[j] == 0) continue;
                if((i+j)%2) continue;
                ll k = (i+j)/2;
                if(v[k] == 3) continue;
                bool flag = dfs(now-mul[i]-mul[j]+mul[k]);
                if(flag){
                    a.pb(i);
                    b.pb(j);
                    dp[now] = 1;
                    return true;
                }
            }
        }
        dp[now] = 0;
        return false;
    };
    ll nval = 0;
    rep(i,0,maxi){
        nval += std::min(3ll, cnt[i])*mul[i];
    }
    if(dfs(nval)){
        rep(i,0,maxi){
            rep(j,3,cnt[i]){
                a.pb(i);
                b.pb(i);
            }
        }
        reverse(all(a));
        reverse(all(b));
        assert(a.size() == N-1);
        rep(i,0,N-1) cout << a[i] << " " << b[i] << ln;
    }
    else cout << -1 << ln;
}

void subtask3(ll N, vi A){
    constexpr ll LOG = 61;
    vii bit(LOG);
    rep(i,0,N){
        rep(j,0,LOG){
            if(A[i] & (1ll<<j)){
                bit[j].pb(A[i]);
                break;
            }
        }
    }
    rep(i,0,LOG){
        while(bit[i].size() > 1){
            ll L = bit[i].back();
            bit[i].pop_back();
            ll R = bit[i].back();
            bit[i].pop_back();
            cout << L << " " << R << ln;
            ll M = (L+R)/2;
            rep(j,0,LOG){
                if(M & (1ll<<j)){
                    bit[j].pb(M);
                    break;
                }
            }
        }
    }
    vi remain;
    rep(i,0,LOG){
        if(!bit[i].empty()) remain.pb(bit[i][0]);
    }
    reverse(all(remain));
    rep(i,1,remain.size()){
        cout << remain[0] << " " << remain[i] << ln;
        remain[0] = (remain[0]+remain[i])/2;
    }
}

void subtask4(ll N, vi A){
    std::random_device rnd;
    std::mt19937_64 mt(rnd());

    std::shuffle(all(A), mt);

    constexpr ll LOG = 61;
    ll remain_mem = -1;
    vi a, b;
    {
        vii bit(LOG);
        rep(i,0,N){
            if(A[i]%2 == 0) continue;
            rep(j,0,LOG){
                if(A[i] & (1ll<<j)) continue;
                bit[j].pb(A[i]);
                break;
            }
        }
        rep(i,0,LOG){
            while(bit[i].size() > 1){
                ll L = bit[i].back();
                bit[i].pop_back();
                ll R = bit[i].back();
                bit[i].pop_back();
                a.pb(L);
                b.pb(R);
                ll M = (L+R)/2;
                rep(j,0,LOG){
                    if(M & (1ll<<j)) continue;
                    bit[j].pb(M);
                    break;
                }
            }
        }
        vi remain;
        rep(i,0,LOG){
            if(!bit[i].empty()) remain.pb(bit[i][0]);
        }
        reverse(all(remain));
        rep(i,1,remain.size()){
            a.pb(remain[0]);
            b.pb(remain[i]);
            remain[0] = (remain[0]+remain[i])/2;
        }
        if(!remain.empty() && remain[0]%2){
            cout << -1 << ln;
            return;
        }
        if(!remain.empty()) remain_mem = remain[0];
    }
    {
        vii bit(LOG);
        if(remain_mem != -1) A.pb(remain_mem);
        rep(i,0,A.size()){
            if(A[i]%2) continue;
            rep(j,0,LOG){
                if(A[i] & (1ll<<j)){
                    bit[j].pb(A[i]);
                    break;
                }
            }
        }
        rep(i,0,LOG){
            while(bit[i].size() > 1){
                ll L = bit[i].back();
                bit[i].pop_back();
                ll R = bit[i].back();
                bit[i].pop_back();
                a.pb(L);
                b.pb(R);
                ll M = (L+R)/2;
                rep(j,0,LOG){
                    if(M & (1ll<<j)){
                        bit[j].pb(M);
                        break;
                    }
                }
            }
        }
        vi remain;
        rep(i,0,LOG){
            if(!bit[i].empty()) remain.pb(bit[i][0]);
        }
        reverse(all(remain));
        rep(i,1,remain.size()){
            a.pb(remain[0]);
            b.pb(remain[i]);
            remain[0] = (remain[0]+remain[i])/2;
        }
        rep(i,0,a.size()) cout << a[i] << " " << b[i] << ln;
    }
}

void solve(){
    ll N; cin >> N;
    vi A(N);
    rep(i,0,N) cin >> A[i];
    if(*max_element(all(A)) <= 10){
        subtask2(N,A);
        return;
    }
    {
        bool flag = true;
        rep(i,0,N){
            if(A[i]%2) flag = false;
        }
        if(flag){
            subtask3(N,A);
            return;
        }
    }

}

int main(){
    cin.tie(nullptr);
    std::ios::sync_with_stdio(false);
    ll T; cin >> T;
    while(T--){
        solve();
    }
}

詳細信息

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 3564kb

input:

99
4
739880851158065302 19206582949872932 883064254701115295 222072661880779376
7
148399819461615003 209088712310207988 53191076581680214 445068618251612752 230505279594622109 115754892157516718 804173775829453588
2
77979357045500669 41693388829622019
3
341612949433488278 609808714829036935 19994167...

output:

306233065082806734 841634384550345462
573933724816576098 880394701391566042
163385290771965010 342024539797259018
930733700403006064 252704915284612014
734043298171153452 290755794136321364
512399546153737408 327387894930879280
419893720542308344 90631795972271738
574824673454037818 6579819885178465...

result:

wrong answer there's no 306233065082806734 in the current set (test case 1)

Subtask #2:

score: 23
Accepted

Test #16:

score: 23
Accepted
time: 100ms
memory: 36056kb

input:

100
3
3 3 2
3
4 1 1
4
1 3 4 4
6
4 4 2 3 1 2
4
0 2 1 4
3
0 2 0
7
3 3 1 1 3 4 0
2
0 4
4
1 4 2 3
7
4 0 0 3 2 3 4
4
4 2 0 3
7
0 2 2 1 4 2 4
7
3 0 3 1 2 0 3
4
4 3 1 4
6
2 3 0 1 3 4
5
1 4 0 3 4
5
4 2 0 4 2
3
0 1 2
6
4 1 4 2 0 4
7
4 2 4 3 1 3 1
4
1 4 4 0
2
1 1
6
0 3 3 0 0 4
7
4 3 0 3 3 3 4
4
4 1 1 3
6
2 0 ...

output:

-1
-1
1 3
4 4
2 4
1 3
2 2
2 2
4 4
2 4
2 4
1 3
0 2
0 0
0 2
0 4
1 1
3 3
3 3
1 3
2 2
0 4
1 3
2 2
2 4
0 0
0 2
1 3
4 4
2 4
3 3
0 2
1 3
2 4
0 2
1 1
2 2
2 4
1 3
2 4
0 0
0 2
1 1
3 3
3 3
1 3
1 3
4 4
2 4
0 2
1 1
1 3
2 4
3 3
0 4
1 3
2 2
2 4
0 2
2 4
1 3
2 4
0 2
1 1
0 4
2 2
2 4
1 3
2 4
1 1
1 3
2 2
4 4
2 4
3 3
0 ...

result:

ok correct (100 test cases)

Test #17:

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

input:

94
6
4 4 4 4 3 1
7
1 2 2 0 3 1 4
5
4 2 1 1 2
4
4 1 2 2
2
1 0
6
4 4 0 3 2 4
5
1 2 4 3 4
7
1 4 2 1 2 4 1
4
0 2 2 3
6
3 4 2 1 4 3
2
0 2
7
2 1 1 0 2 0 2
4
3 4 1 3
5
2 4 2 1 3
2
3 2
7
1 2 1 1 4 2 0
5
2 2 1 1 3
6
3 1 2 2 4 4
3
2 3 0
5
1 1 1 0 3
4
3 4 2 3
3
4 0 2
3
1 1 1
2
3 0
4
3 3 3 4
4
1 3 3 3
4
2 3 3 1...

output:

4 4
1 3
4 4
4 4
2 4
0 2
1 1
1 1
1 3
2 2
2 4
1 1
2 2
2 4
1 3
2 2
2 4
1 3
-1
0 2
1 3
4 4
4 4
2 4
1 3
2 2
4 4
2 4
1 1
1 1
2 2
2 4
1 3
2 4
0 2
1 3
2 2
1 3
2 2
4 4
2 4
3 3
0 2
0 0
1 1
2 2
2 2
0 2
1 1
1 3
2 4
3 3
1 3
2 2
2 2
2 4
-1
1 1
0 2
1 1
1 1
2 4
1 3
1 1
1 3
2 2
2 2
1 3
2 2
2 2
4 4
2 4
0 2
1 3
1 1
1 ...

result:

ok correct (94 test cases)

Test #18:

score: 0
Accepted
time: 103ms
memory: 36200kb

input:

100
2
0 4
6
0 3 2 2 3 2
6
0 3 2 3 2 4
5
3 2 2 3 2
4
2 1 1 4
5
0 2 0 0 4
4
1 2 4 0
5
3 0 4 4 1
6
3 4 4 4 3 0
6
2 2 3 4 3 2
5
3 1 4 0 4
3
2 1 1
5
3 2 1 1 1
5
1 1 4 2 2
3
2 2 4
5
2 3 1 0 3
3
1 1 3
5
3 1 1 1 2
2
1 2
4
2 2 4 2
5
2 2 0 0 3
5
3 0 4 0 2
5
2 2 1 1 4
6
1 1 3 2 2 0
4
4 3 4 4
3
0 0 4
2
2 3
7
0 ...

output:

0 4
0 2
2 2
3 3
1 3
2 2
0 2
1 3
2 2
2 4
3 3
-1
1 1
2 4
1 3
0 0
0 0
0 4
2 2
2 4
1 3
0 2
0 4
1 3
2 2
2 4
0 4
3 3
4 4
2 4
3 3
2 2
2 2
2 4
3 3
3 3
0 4
1 3
2 2
2 4
-1
1 1
1 1
1 3
2 2
1 1
2 2
2 4
1 3
2 2
2 4
0 2
1 1
3 3
1 3
1 1
1 3
1 1
1 1
1 3
2 2
-1
2 2
2 2
2 4
0 0
0 2
1 3
2 2
0 0
0 2
1 3
2 4
1 1
2 2
2 4...

result:

ok correct (100 test cases)

Test #19:

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

input:

99
7
5 8 3 10 4 3 7
7
3 7 2 9 0 1 8
7
10 6 10 7 8 2 9
7
5 7 1 2 3 5 4
7
1 8 6 10 7 5 9
7
8 2 3 8 7 7 2
7
6 5 9 1 5 0 7
7
10 2 3 4 4 9 2
7
2 8 9 2 4 2 9
7
5 5 4 7 8 4 3
7
6 2 5 5 7 3 2
7
6 3 3 7 8 1 3
7
4 5 4 4 1 4 9
7
0 7 2 6 10 9 9
7
10 9 9 3 2 4 1
7
5 8 5 5 3 3 6
7
0 7 7 0 10 5 8
7
8 3 1 2 2 7 10
...

output:

3 3
3 5
4 4
8 10
7 9
4 8
0 2
1 1
1 3
2 8
5 9
7 7
2 6
4 8
6 10
7 9
8 8
8 10
1 3
2 2
2 4
3 5
5 7
4 6
1 5
3 7
5 9
8 10
7 9
6 8
2 2
2 8
3 7
5 5
5 7
6 8
0 6
1 3
5 5
7 9
2 8
5 5
2 2
2 4
3 3
3 9
6 10
4 8
2 2
2 2
2 4
3 9
6 8
7 9
3 5
4 4
4 4
4 8
5 7
6 6
2 2
2 6
3 5
4 4
5 7
4 6
1 3
2 6
3 7
3 5
4 4
4 8
4 4
1 5...

result:

ok correct (99 test cases)

Test #20:

score: 0
Accepted
time: 83ms
memory: 36132kb

input:

93
7
5 1 7 4 6 2 9
7
0 6 4 2 2 7 9
7
7 0 1 7 4 10 5
7
9 5 3 6 1 7 10
7
6 6 2 4 4 0 8
7
4 5 1 7 6 8 6
7
3 10 8 2 2 10 4
7
10 1 4 0 3 2 9
7
3 2 9 8 1 3 4
7
9 2 10 10 2 2 4
7
7 8 8 4 10 6 7
7
10 10 5 1 2 8 3
7
10 6 10 3 1 3 0
7
5 10 2 8 9 6 0
7
2 5 6 8 6 4 1
7
10 5 4 6 6 10 6
7
9 0 2 6 10 0 10
7
4 1 2 ...

output:

1 5
2 4
3 3
7 9
6 8
3 7
0 2
1 7
2 4
3 9
6 6
4 6
0 4
1 5
2 10
3 7
5 7
6 6
1 3
2 6
4 10
5 7
7 9
6 8
0 2
4 4
4 6
1 5
6 8
3 7
1 5
3 7
4 6
5 5
6 8
5 7
2 2
2 4
3 3
8 10
3 9
6 10
0 2
1 1
1 3
2 4
3 9
6 10
1 3
2 2
2 4
3 3
3 9
6 8
2 2
2 2
2 4
3 9
6 10
8 10
4 6
5 7
6 8
7 7
8 10
7 9
1 3
2 2
2 10
6 8
5 7
6 10
0 ...

result:

ok correct (93 test cases)

Test #21:

score: 0
Accepted
time: 80ms
memory: 36204kb

input:

100
7
5 2 6 0 4 1 0
7
2 2 6 7 0 0 4
7
9 5 9 6 9 1 10
7
1 10 3 3 3 0 1
7
5 2 9 1 5 1 6
7
3 5 1 2 1 4 3
7
4 5 10 7 8 0 5
7
2 4 10 0 0 1 10
7
9 1 9 3 4 0 9
7
2 9 5 6 3 2 6
7
5 10 5 10 9 10 3
7
2 8 2 9 8 7 9
7
7 0 8 7 0 2 10
7
5 2 1 3 9 5 4
7
0 0 8 6 9 3 2
7
2 1 4 7 1 6 5
7
3 1 1 6 4 7 2
7
1 4 1 3 10 6 ...

output:

0 0
0 2
1 1
1 5
4 6
3 5
0 0
0 2
1 7
2 4
4 6
3 5
1 5
3 9
6 10
6 8
9 9
7 9
0 10
1 1
1 3
3 3
3 5
2 4
1 1
1 5
2 6
3 9
4 6
5 5
1 1
1 3
2 2
2 4
3 3
3 5
0 4
2 8
5 5
5 5
5 7
6 10
0 0
0 2
1 1
4 10
1 7
4 10
0 4
1 9
3 5
2 4
9 9
3 9
2 2
2 6
3 5
4 4
4 6
5 9
3 5
4 10
5 7
6 10
8 10
9 9
2 2
2 8
5 7
6 8
9 9
7 9
0 0
...

result:

ok correct (100 test cases)

Test #22:

score: 0
Accepted
time: 84ms
memory: 36060kb

input:

94
16
8 8 7 5 4 8 7 4 8 9 0 5 1 8 4 0
18
6 4 10 0 1 9 4 8 1 4 7 3 6 6 5 1 2 10
17
8 10 3 2 0 6 6 5 4 5 8 8 0 7 0 10 10
16
6 8 2 4 0 10 7 2 4 3 4 2 9 0 3 1
16
4 1 4 8 4 10 6 3 3 3 1 2 9 2 10 9
20
10 7 10 6 8 9 8 5 3 9 1 8 8 10 2 7 9 7 8 0
17
4 0 3 5 0 8 0 10 4 10 9 9 7 7 0 9 7
17
3 2 9 8 2 3 6 7 6 4 ...

output:

8 8
8 8
0 0
0 4
1 5
2 4
3 3
3 5
4 4
4 8
6 8
7 7
7 7
7 9
8 8
0 4
1 1
1 1
1 3
2 2
2 2
2 4
3 5
4 4
4 6
5 7
6 6
6 6
6 8
7 9
10 10
8 10
0 0
0 0
0 2
1 3
2 4
3 5
4 6
5 5
5 7
6 6
6 8
8 8
8 10
7 9
10 10
8 10
0 0
0 2
1 1
1 3
2 2
2 2
2 4
3 3
3 7
4 4
4 6
5 5
5 9
8 10
7 9
1 1
1 3
2 2
2 2
2 4
3 3
3 3
3 9
4 4
4 6
...

result:

ok correct (94 test cases)

Test #23:

score: 0
Accepted
time: 72ms
memory: 36064kb

input:

100
17
3 7 5 5 5 6 4 2 8 4 10 6 1 7 5 2 4
16
10 9 4 2 8 8 1 0 1 10 7 1 1 5 0 7
16
7 10 8 7 8 8 3 4 0 2 6 6 1 5 4 2
18
4 1 1 7 10 9 6 1 8 3 9 1 7 10 5 7 5 9
16
8 2 4 3 10 9 7 0 5 8 2 4 1 5 7 5
20
4 0 1 8 0 9 1 10 10 10 3 3 7 0 0 9 0 8 8 6
17
2 0 8 0 9 9 1 6 3 3 6 8 1 10 10 8 1
17
10 10 6 0 10 1 4 9 5...

output:

5 5
1 3
2 2
2 2
2 4
3 5
4 4
4 4
4 6
5 5
5 5
5 7
6 6
8 10
7 9
6 8
1 1
0 0
0 4
1 1
1 1
1 5
2 2
2 8
3 5
4 8
6 10
7 7
7 9
8 8
8 10
0 2
1 1
1 3
2 2
2 4
3 5
4 4
4 6
5 7
6 6
6 8
7 7
8 8
8 10
7 9
1 1
1 1
1 1
1 3
2 4
3 5
4 6
5 5
5 7
6 8
7 7
7 7
7 9
9 9
10 10
8 10
9 9
0 2
1 1
1 3
2 2
2 4
3 5
4 4
4 8
5 5
5 7
6...

result:

ok correct (100 test cases)

Test #24:

score: 0
Accepted
time: 95ms
memory: 36052kb

input:

100
17
3 0 6 0 3 4 10 7 5 9 9 7 5 0 1 3 1
19
1 0 10 8 6 0 8 9 6 3 3 8 6 10 7 2 0 5 9
16
10 4 4 5 4 1 10 9 0 4 6 2 10 4 2 8
19
6 10 9 3 10 8 9 4 6 9 2 0 10 5 0 6 10 3 8
19
5 1 0 4 8 7 3 8 10 5 0 6 9 7 5 7 5 10 0
18
10 8 6 9 2 10 9 0 10 8 5 6 10 6 9 10 1 1
17
5 5 0 5 4 6 7 3 0 4 10 2 2 1 2 3 3
17
9 3 ...

output:

0 0
0 0
0 4
1 1
1 3
2 2
2 6
3 3
3 5
4 4
4 10
5 7
7 7
7 9
6 8
7 9
0 0
0 0
0 2
1 1
1 3
2 6
3 5
4 4
4 6
5 7
6 6
6 8
7 9
8 8
8 8
10 10
8 10
9 9
4 4
4 4
0 2
1 1
1 5
2 4
3 3
3 9
4 4
4 6
6 8
5 7
6 10
10 10
8 10
10 10
0 0
0 2
1 3
2 4
3 3
3 5
4 6
5 9
6 6
6 8
7 7
7 9
8 8
10 10
10 10
8 10
9 9
5 5
0 0
0 0
0 4
1...

result:

ok correct (100 test cases)

Test #25:

score: 0
Accepted
time: 119ms
memory: 36172kb

input:

100
46
6 6 0 8 7 7 3 5 0 1 6 10 6 6 2 8 1 10 9 3 6 5 9 2 3 9 10 7 9 0 1 6 6 5 9 6 0 8 1 1 5 8 7 4 9 1
64
0 3 10 5 9 9 5 2 4 10 3 5 0 3 5 1 3 0 9 9 7 8 2 9 0 5 1 9 5 5 7 2 10 7 2 6 8 2 1 2 0 4 8 9 0 5 4 8 2 2 2 8 0 8 6 3 4 1 3 6 10 9 10 0
94
10 10 0 6 0 10 4 3 3 0 3 1 4 10 2 8 7 10 7 5 1 10 3 2 6 2 5...

output:

9 9
9 9
9 9
8 8
7 7
6 6
6 6
6 6
6 6
6 6
6 6
5 5
1 1
1 1
1 1
0 0
0 0
0 0
0 4
1 1
1 1
1 7
2 2
2 2
2 6
3 3
3 3
3 5
4 4
4 4
4 6
5 5
5 5
5 7
6 6
6 8
7 7
7 9
8 8
8 8
9 9
10 10
10 10
8 10
9 9
10 10
10 10
9 9
9 9
9 9
9 9
9 9
8 8
8 8
8 8
5 5
5 5
5 5
5 5
5 5
4 4
3 3
3 3
3 3
2 2
2 2
2 2
2 2
2 2
2 2
1 1
0 0
0 0...

result:

ok correct (100 test cases)

Test #26:

score: 0
Accepted
time: 92ms
memory: 36192kb

input:

100
78
3 4 9 3 8 7 2 5 2 4 2 2 3 9 3 2 4 10 2 3 0 9 4 6 2 0 10 2 4 8 9 2 7 9 9 1 4 8 2 1 5 10 5 2 7 3 5 0 0 6 4 8 3 7 8 4 6 9 5 1 5 6 10 3 4 4 2 1 4 10 9 2 7 1 3 1 4 6
95
4 7 6 2 3 7 10 1 7 7 5 6 8 1 6 6 6 10 3 2 2 9 3 2 4 7 3 3 9 2 2 7 2 9 3 4 0 3 5 5 6 5 9 4 2 9 5 7 9 5 1 1 8 2 6 6 0 9 5 8 6 8 8 4...

output:

10 10
10 10
9 9
9 9
9 9
9 9
9 9
8 8
8 8
7 7
7 7
6 6
6 6
5 5
5 5
5 5
4 4
4 4
4 4
4 4
4 4
4 4
4 4
4 4
4 4
3 3
3 3
3 3
3 3
3 3
3 3
2 2
2 2
2 2
2 2
2 2
2 2
2 2
2 2
2 2
2 2
1 1
1 1
1 1
0 0
0 0
0 0
1 1
0 2
1 1
1 1
1 3
2 2
2 2
2 4
3 3
3 3
3 5
4 4
4 4
4 6
5 5
5 5
5 7
6 6
6 6
6 8
7 7
7 7
7 9
8 8
8 8
9 9
10 1...

result:

ok correct (100 test cases)

Test #27:

score: 0
Accepted
time: 75ms
memory: 36096kb

input:

100
64
7 8 5 10 5 10 7 9 9 6 1 4 1 4 4 10 10 9 9 4 1 6 10 0 7 9 3 5 0 0 4 0 0 2 10 1 10 9 7 3 2 3 1 4 6 4 6 8 5 4 2 10 5 10 1 7 10 6 2 4 0 0 8 7
90
2 6 0 1 0 4 6 7 9 0 8 5 6 6 9 7 3 7 8 0 7 8 1 3 2 8 6 6 10 1 1 5 8 6 10 5 3 4 9 8 10 3 3 5 0 2 5 6 7 2 9 1 10 2 7 0 9 9 10 6 3 2 10 1 6 9 6 1 3 10 4 0 2...

output:

10 10
10 10
10 10
10 10
10 10
10 10
10 10
9 9
9 9
9 9
7 7
7 7
7 7
6 6
6 6
5 5
5 5
4 4
4 4
4 4
4 4
4 4
4 4
2 2
1 1
1 1
1 1
0 0
0 0
0 0
0 0
0 0
0 0
1 1
0 2
1 1
1 1
1 3
2 2
2 2
2 4
3 3
3 3
3 5
4 4
4 4
4 6
5 5
5 5
5 7
6 6
6 6
6 8
7 7
7 7
7 9
8 8
8 8
9 9
10 10
10 10
8 10
9 9
10 10
10 10
10 10
10 10
10 10...

result:

ok correct (100 test cases)

Test #28:

score: 0
Accepted
time: 189ms
memory: 50804kb

input:

100
41905
7 0 1 6 7 6 10 4 9 10 10 8 4 9 6 7 0 5 7 9 10 7 0 7 7 2 10 5 0 4 0 0 1 5 10 6 10 5 9 6 4 10 10 8 5 4 3 7 7 6 0 9 0 4 10 6 5 4 6 6 4 3 2 8 9 3 0 0 1 5 6 10 8 2 2 9 5 8 4 4 9 10 3 1 0 5 6 3 0 4 0 7 2 7 9 0 5 1 9 1 4 6 0 0 7 3 2 2 9 8 5 0 5 0 6 7 10 1 0 2 1 10 3 2 1 0 5 6 10 6 6 0 10 6 1 4 9 ...

output:

10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
...

result:

ok correct (100 test cases)

Test #29:

score: 0
Accepted
time: 215ms
memory: 45528kb

input:

100
112302
1 0 4 4 3 5 5 3 0 10 7 7 3 0 1 7 0 4 5 3 2 1 10 2 4 3 1 1 1 5 0 3 1 6 6 0 7 3 3 7 5 1 7 4 3 4 8 4 10 4 2 2 10 0 4 3 1 8 2 10 4 7 1 1 2 0 4 10 10 8 2 6 3 3 4 1 2 8 3 3 10 8 2 8 8 9 3 1 3 1 3 7 7 10 0 9 8 1 0 1 3 0 3 1 10 4 5 10 5 0 10 8 5 5 5 7 6 10 8 8 2 6 9 4 7 4 9 4 1 1 8 6 5 6 8 0 0 9 ...

output:

10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
...

result:

ok correct (100 test cases)

Test #30:

score: 0
Accepted
time: 184ms
memory: 51696kb

input:

100
471176
2 5 6 6 2 3 7 4 7 1 2 0 1 7 2 4 10 2 4 9 0 4 0 10 1 1 2 5 7 3 4 10 5 0 10 0 6 7 3 8 7 5 10 10 1 6 10 6 2 2 5 5 8 2 4 6 5 8 0 2 0 3 10 6 0 8 10 8 5 5 0 10 2 1 1 1 6 10 9 1 10 3 10 0 7 1 8 8 5 4 9 4 0 2 5 6 5 5 2 3 3 1 5 5 4 6 5 5 8 10 1 8 8 10 1 4 9 3 4 10 4 7 7 9 3 2 8 10 2 3 9 3 5 3 8 6 ...

output:

10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
...

result:

ok correct (100 test cases)

Test #31:

score: 0
Accepted
time: 173ms
memory: 37092kb

input:

100
19254
4 0 1 5 2 0 8 3 6 4 5 10 7 0 5 5 9 7 4 6 1 0 2 0 3 8 6 5 8 0 1 0 2 1 9 2 5 8 7 8 5 3 4 3 7 4 6 10 5 0 5 6 4 6 8 4 6 0 4 2 0 4 6 9 9 6 5 9 4 8 6 2 9 7 1 8 1 6 1 6 1 6 2 2 7 2 3 3 5 8 5 9 4 6 6 6 8 10 6 3 6 1 2 4 2 10 1 9 8 9 8 8 9 8 1 6 4 8 5 8 4 2 8 9 10 5 7 2 6 4 5 2 4 7 9 5 1 0 8 1 1 4 1...

output:

10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
...

result:

ok correct (100 test cases)

Test #32:

score: 0
Accepted
time: 177ms
memory: 37372kb

input:

100
10002
3 9 6 8 1 9 5 10 5 10 1 5 9 9 7 1 4 7 10 5 6 7 4 2 2 9 0 6 10 9 0 10 1 9 2 7 4 9 3 10 9 10 10 6 6 5 9 6 8 6 2 7 1 1 1 1 7 2 3 6 2 4 2 4 10 7 0 4 9 6 2 9 1 10 5 8 2 6 4 5 5 2 7 3 0 8 10 5 1 2 3 2 10 4 10 0 1 8 9 1 4 0 3 2 0 8 10 2 7 10 0 4 3 3 6 3 5 10 0 5 0 0 2 2 10 10 7 8 10 9 2 10 0 4 5 ...

output:

10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
...

result:

ok correct (100 test cases)

Test #33:

score: 0
Accepted
time: 167ms
memory: 37208kb

input:

100
8848
9 0 3 7 6 4 9 5 4 5 8 1 10 8 10 10 1 5 4 5 1 10 1 1 2 5 0 6 4 10 3 2 8 7 4 6 10 10 4 1 6 0 5 3 3 6 1 9 0 6 2 1 2 8 2 3 8 2 0 10 9 9 8 8 6 5 7 10 7 10 9 4 1 6 2 0 3 4 1 6 3 1 8 4 8 3 6 7 4 7 8 4 6 9 3 1 7 4 9 9 1 10 1 1 2 4 0 8 4 10 5 6 1 7 9 5 2 10 10 4 8 9 7 8 0 8 4 1 10 3 8 4 7 7 0 3 4 5 ...

output:

10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
10 10
...

result:

ok correct (100 test cases)

Subtask #3:

score: 16
Accepted

Test #34:

score: 16
Accepted
time: 182ms
memory: 3640kb

input:

100000
5
846784256447769304 457696478728961702 128469521648960690 597630796847754190 104256763714529164
5
658897822238868978 472135077337628566 399538027669313322 622703684108675696 425723088635325654
5
917704960887390986 140817562615382054 877934664521057998 782212806618666818 616380973421914538
8
...

output:

597630796847754190 128469521648960690
363050159248357440 846784256447769304
604917207848063372 104256763714529164
354586985781296268 457696478728961702
425723088635325654 399538027669313322
472135077337628566 658897822238868978
412630558152319488 622703684108675696
517667121130497592 565516449788248...

result:

ok correct (100000 test cases)

Test #35:

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

input:

100000
4
132941437397264810 143141501854884272 958712444844113692 341497234016264540
7
923004266892618172 15365813785503270 930609521602302292 819335542601433618 213670074288711286 150311691204302148 244405681344585926
5
371893080714371800 575829750571342010 292988012239447120 115093373296591180 268...

output:

341497234016264540 958712444844113692
143141501854884272 650104839430189116
396623170642536694 132941437397264810
244405681344585926 213670074288711286
229037877816648606 819335542601433618
150311691204302148 930609521602302292
540460606403302220 923004266892618172
524186710209041112 731732436647960...

result:

ok correct (100000 test cases)

Test #36:

score: 0
Accepted
time: 187ms
memory: 3548kb

input:

100000
4
928198344825292264 690070772109811286 244045206839989604 561025252182682906
3
627239866615848210 42470017740412280 54251562555326842
3
490057757292451598 818062735467254804 348318035919019310
2
551686081736618768 194488231774246450
3
112852023970360962 332810104058707034 451110399052627062
...

output:

561025252182682906 690070772109811286
625548012146247096 928198344825292264
776873178485769680 244045206839989604
54251562555326842 627239866615848210
42470017740412280 340745714585587526
348318035919019310 490057757292451598
818062735467254804 419187896605735454
551686081736618768 19448823177424645...

result:

ok correct (100000 test cases)

Test #37:

score: 0
Accepted
time: 235ms
memory: 3644kb

input:

50000
15
970453612553526824 403854393807928174 722892131244078370 35115189723455662 375191889860000444 915405723947874872 635574780184696680 264400470199418708 859039596531178468 27938184881043946 553805664139227226 876314307095280030 571028682295683456 30435765695090076 81051167961127742
20
7987413...

output:

81051167961127742 876314307095280030
478682737528203886 553805664139227226
27938184881043946 35115189723455662
722892131244078370 403854393807928174
31526687302249804 516244200833715556
30435765695090076 859039596531178468
264400470199418708 375191889860000444
319796180029709576 273885444067982680
5...

result:

ok correct (50000 test cases)

Test #38:

score: 0
Accepted
time: 221ms
memory: 3636kb

input:

50000
20
998788559176849620 191593882411529926 342711646561735406 56435783243285828 213144199738872896 552932543009462260 862655508602678778 197769932466201968 649107231900330578 606332158266321414 679519095246181928 69228654018660218 907522706303602556 706594708190768848 317996892998797510 98299001...

output:

82951860797867962 233934493014788330
158443176906328146 317996892998797510
69228654018660218 606332158266321414
649107231900330578 862655508602678778
755881370251504678 342711646561735406
549296508406620042 191593882411529926
238220034952562828 280145788708142508
259182911830352668 80197422211340912...

result:

ok correct (50000 test cases)

Test #39:

score: 0
Accepted
time: 222ms
memory: 3508kb

input:

50000
19
687533614023914694 738663892302361454 628044408557611320 475365328934162610 242048409095362442 254414508714647088 415287407545536222 333427085181162020 691789987581261114 501496830456417768 370865072857248388 610878478005084624 460491699469405256 995621599317911412 72184531803437802 5221300...

output:

402837784917503802 473640262986677202
438239023952090502 72184531803437802
691789987581261114 415287407545536222
242048409095362442 475365328934162610
358706869014762526 738663892302361454
548685380658561990 687533614023914694
553538697563398668 995621599317911412
370865072857248388 3334270851811620...

result:

ok correct (50000 test cases)

Test #40:

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

input:

30000
25
701453932981408346 465306500019836282 792774089369512740 928134668660137906 489548012753296822 563069662510759842 456553328586506700 752651620972947846 610563120623014800 946872198162810216 382124190056540228 528408240467204940 156080508230960224 755279683495886594 353003950140523154 726814...

output:

304233754191711742 691288776835558270
497761265513635006 561451759575364210
187841411256048522 607769333277773430
726814281386478566 353003950140523154
755279683495886594 752651620972947846
563069662510759842 489548012753296822
928134668660137906 465306500019836282
696720584339987094 701453932981408...

result:

ok correct (30000 test cases)

Test #41:

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

input:

30000
24
802553849623129746 211707666543464912 78106851365388652 41150834245659428 824295231323480318 65220471583082028 504011063830422278 582465764474213950 653316240753155704 254391730000013712 73470169815090336 70058062306145696 320805890715812130 762434076887201766 107191591092647094 66623182252...

output:

40187248199180534 556915919971198542
298551584085189538 801262516027000718
973662733681459690 107191591092647094
762434076887201766 320805890715812130
582465764474213950 504011063830422278
543238414152318114 824295231323480318
541619983801506948 317895789993303868
713862378171374300 6522047158308202...

result:

ok correct (30000 test cases)

Test #42:

score: 0
Accepted
time: 220ms
memory: 3808kb

input:

30000
27
457692759396051910 105542225399435134 28952855744712754 551775949854678384 243201017518706110 830727952675976422 770508119165800012 202072001288194376 842102259870000526 184524967708115324 636362069740656520 654459612358466674 183209892432401444 100513548134942846 72707763558771580 42597951...

output:

300417521345265250 859029090720613882
579723306032939566 259672969948699182
419698137990819374 296153793859866470
357925965925342922 100513548134942846
654459612358466674 842102259870000526
830727952675976422 243201017518706110
536964485097341266 28952855744712754
282958670421027010 1055422253994351...

result:

ok correct (30000 test cases)

Test #43:

score: 0
Accepted
time: 220ms
memory: 15084kb

input:

100
365633
240280625535601202 938026129049958522 147115906397155306 652580989323075650 725975096118295602 205776298062652394 601103849421971138 331987681752388762 840580362429635958 835259996207496842 119358021292888398 319502650126227206 963133797479057582 879470558738716974 741484002023142690 3370...

output:

780781389890772134 462546456847920258
983273217073289170 54703858887732306
518988537980510738 121007210812414874
319997874396462806 542567485305147330
699873189331273774 290960058824475954
376100996009174838 900230839515231562
991186553665267026 816742406526247918
367304094746744434 9741747154996249...

result:

ok correct (100 test cases)

Test #44:

score: 0
Accepted
time: 196ms
memory: 16744kb

input:

100
468798
784219641558971418 868193736931466770 709669653094040434 820342537947112058 551143489403660526 267279653811163658 370522601251248390 368960240455457934 377406818992348662 446571520515917398 203417725700526758 781465163407686018 793863659816666930 689102809204233742 460833182899194594 8845...

output:

812530407663751406 882679806250695874
810693562577937022 8779693935145434
965388653482500574 170815080687607818
69534330454674702 237228791906436414
153381561180555558 101818031440929414
127599796310742486 35815535861853234
992738391753996806 668547857570069198
830643124662033002 368053302377111882
...

result:

ok correct (100 test cases)

Test #45:

score: 0
Accepted
time: 203ms
memory: 14068kb

input:

100
335003
576606818757903242 39138102231712338 101565358810296722 500967049719563958 60093483316193590 435418544638688670 883896893287765898 482015906798694930 208166390296394766 603169642587608970 697598340090102702 37116072285605102 692409274069565602 359039270687175358 598214522887322026 9588135...

output:

486076417769142294 37999509308599778
747053273988117554 660483425940083014
898547649727091586 492361107982889110
112077483133802110 400296715320192834
344698049360243802 31999092811195266
188348571085719534 661442386984787514
507442215373602266 941686615472184130
724564415422893198 93061223624921684...

result:

ok correct (100 test cases)

Subtask #4:

score: 0
Wrong Answer

Test #46:

score: 0
Wrong Answer
time: 93ms
memory: 6924kb

input:

100
211957
911918942087402387 344230223346742784 16289402153237664 528890583619159010 886281719684850237 865484734102017297 321851390502278959 754268375474197153 237414161302130571 135637002716682378 824412491959977735 162505521049217610 246319278060116103 666703181591704279 650875500699154233 96397...

output:

719305379065820542 978135283799375274
742536530921432840 749318179341718328
745927355131575584 848720331432597908
311961926661567072 749857132494344162
473540720761303878 30159557389233966
469213583472960 607264137430136784
303866675506804872 277401424002240658

result:

wrong output format Unexpected end of file - int64 expected (test case 1)