QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#513083#9167. Coprime Arrayucup-team1264#WA 701ms3832kbC++202.5kb2024-08-10 16:51:402024-08-10 16:51:42

Judging History

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

  • [2024-08-11 17:38:28]
  • hack成功,自动添加数据
  • (/hack/775)
  • [2024-08-10 16:51:42]
  • 评测
  • 测评结果:WA
  • 用时:701ms
  • 内存:3832kb
  • [2024-08-10 16:51:40]
  • 提交

answer

// https://www.youtube.com/watch?v=wthasN45KuY
// You said I’d fly away
// But my walls have kept me down
// Now I’m lost and I’m afraid
// And I’m close to hit the ground
// 
// You said I’d fly away
// You said I’d fly anywhere
// But I keep on Falling

#ifndef ONLINE_JUDGE
#include "templates/debug.hpp"
#else
#define debug(...)
#endif

#include <bits/stdc++.h>
using namespace std;
using i64 = int64_t;
using u64 = uint64_t;

#define int i64
void solve() {
    int s, x; cin >> s >> x;
    if (gcd(s, x) == 1) {
        cout << 1 << "\n";
        cout << s << "\n";  
    }
    // Goldbach's conjecture
    if (x <= 20000) {
        vector<int> dp(x + 1, 1e9 + 7), fa(x + 1, -1);
        dp[0] = 0;
        vector<int> cop_nums;
        dp[1] = 1; cop_nums.push_back(1); fa[1] = 1;
        for (int i = 2; i <= x; i++) {
            if (gcd(i, x) == 1) {
                dp[i] = 1;
                cop_nums.push_back(i);
                fa[i] = i;
                continue;
            }
            for (int cop: cop_nums) {
                if (dp[i - cop] + 1 < dp[i]) {
                    dp[i] = dp[i - cop] + 1;
                    fa[i] = cop;
                }
            }
        }
        debug(dp);
        cout << dp[s % x] << "\n";
        vector<int> ans;
        while (s % x != 0) {
            ans.push_back(fa[s % x]);
            s -= fa[s % x];
        }
        ans[0] += s;
        for (int x: ans) cout << x << " ";
        cout << "\n";
    } else {
        auto time = chrono::high_resolution_clock::now();
        mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
        using chrono_literals::operator""ms;
        while (chrono::high_resolution_clock::now() - time < 700ms) {
            int t = rng() % (x - 1) + 1;
            if (gcd(t, x) == 1 && gcd(s - t, x) == 1) {
                cout << 2 << "\n";
                cout << t << " " << s - t << "\n";
                return;
            }
        }
        while (true) {
            int t1 = 1, t2 = rng() % (x - 1) + 1;
            if (gcd(t2, x) == 1 && gcd(s - t1 - t2, x) == 1) {
                cout << 3 << "\n";
                cout << 1 << " " << t2 << " " << s - t1 - t2 << "\n";
                return;
            }
        }
    }

}
#undef int

// Make bold hypotheses and verify carefully
int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int t = 1;
    // cin >> t;
    while (t--) {
        solve();
    }
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

9 6

output:

3
7 1 1 

result:

ok Correct

Test #2:

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

input:

14 34

output:

2
1 13 

result:

ok Correct

Test #3:

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

input:

1000000000 223092870

output:

2
94047803 905952197

result:

ok Correct

Test #4:

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

input:

2 1000000000

output:

2
820343679 -820343677

result:

ok Correct

Test #5:

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

input:

649557664 933437700

output:

2
99868817 549688847

result:

ok Correct

Test #6:

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

input:

33396678 777360870

output:

2
460664341 -427267663

result:

ok Correct

Test #7:

score: 0
Accepted
time: 700ms
memory: 3552kb

input:

48205845 903124530

output:

3
1 540731371 -492525527

result:

ok Correct

Test #8:

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

input:

251037078 505905400

output:

2
206317497 44719581

result:

ok Correct

Test #9:

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

input:

30022920 172746860

output:

2
135836117 -105813197

result:

ok Correct

Test #10:

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

input:

63639298 808058790

output:

2
166764497 -103125199

result:

ok Correct

Test #11:

score: 0
Accepted
time: 700ms
memory: 3616kb

input:

76579017 362768406

output:

3
1 210905473 -134326457

result:

ok Correct

Test #12:

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

input:

40423669 121437778

output:

3
1 56104243 -15680575

result:

ok Correct

Test #13:

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

input:

449277309 720915195

output:

2
373664692 75612617

result:

ok Correct

Test #14:

score: 0
Accepted
time: 701ms
memory: 3832kb

input:

81665969 919836918

output:

3
1 598419797 -516753829

result:

ok Correct

Test #15:

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

input:

470578680 280387800

output:

2
3049523 467529157

result:

ok Correct

Test #16:

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

input:

58450340 803305503

output:

2
647686066 -589235726

result:

ok Correct

Test #17:

score: 0
Accepted
time: 700ms
memory: 3816kb

input:

125896113 323676210

output:

3
1 49357453 76538659

result:

ok Correct

Test #18:

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

input:

381905348 434752500

output:

2
248901361 133003987

result:

ok Correct

Test #19:

score: -100
Wrong Answer
time: 0ms
memory: 3652kb

input:

78916498 653897673

output:

1
78916498
2
604236023 -525319525

result:

wrong output format Extra information in the output file