QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#513116 | #9167. Coprime Array | ucup-team1264# | WA | 800ms | 3832kb | C++20 | 2.6kb | 2024-08-10 16:57:39 | 2024-08-10 16:57:39 |
Judging History
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 || s % x <= 20000) {
int add = s / x * x;
s -= add;
int m = min(x, s);
vector<int> dp(m + 1, 1e9 + 7), fa(m + 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 <= m; 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] << "\n";
vector<int> ans;
while (s) {
ans.push_back(fa[s]);
s -= fa[s];
}
ans[0] += add;
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 < 800ms) {
int t = rng() % int(1e9 - 7) + 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: 3592kb
input:
9 6
output:
3 7 1 1
result:
ok Correct
Test #2:
score: 0
Accepted
time: 0ms
memory: 3556kb
input:
14 34
output:
2 1 13
result:
ok Correct
Test #3:
score: 0
Accepted
time: 0ms
memory: 3828kb
input:
1000000000 223092870
output:
2 343016627 656983373
result:
ok Correct
Test #4:
score: 0
Accepted
time: 0ms
memory: 3524kb
input:
2 1000000000
output:
2 1 1
result:
ok Correct
Test #5:
score: 0
Accepted
time: 0ms
memory: 3820kb
input:
649557664 933437700
output:
2 955512731 -305955067
result:
ok Correct
Test #6:
score: 0
Accepted
time: 0ms
memory: 3560kb
input:
33396678 777360870
output:
2 894253681 -860857003
result:
ok Correct
Test #7:
score: 0
Accepted
time: 796ms
memory: 3752kb
input:
48205845 903124530
output:
3 1 447444967 -399239123
result:
ok Correct
Test #8:
score: 0
Accepted
time: 0ms
memory: 3752kb
input:
251037078 505905400
output:
2 552335321 -301298243
result:
ok Correct
Test #9:
score: 0
Accepted
time: 0ms
memory: 3592kb
input:
30022920 172746860
output:
2 951206809 -921183889
result:
ok Correct
Test #10:
score: 0
Accepted
time: 0ms
memory: 3832kb
input:
63639298 808058790
output:
2 955132001 -891492703
result:
ok Correct
Test #11:
score: 0
Accepted
time: 800ms
memory: 3608kb
input:
76579017 362768406
output:
3 1 19844749 56734267
result:
ok Correct
Test #12:
score: 0
Accepted
time: 797ms
memory: 3828kb
input:
40423669 121437778
output:
3 1 41308787 -885119
result:
ok Correct
Test #13:
score: 0
Accepted
time: 0ms
memory: 3600kb
input:
449277309 720915195
output:
2 87228667 362048642
result:
ok Correct
Test #14:
score: 0
Accepted
time: 796ms
memory: 3528kb
input:
81665969 919836918
output:
3 1 893558123 -811892155
result:
ok Correct
Test #15:
score: 0
Accepted
time: 0ms
memory: 3608kb
input:
470578680 280387800
output:
2 922845667 -452266987
result:
ok Correct
Test #16:
score: 0
Accepted
time: 0ms
memory: 3620kb
input:
58450340 803305503
output:
2 421369030 -362918690
result:
ok Correct
Test #17:
score: 0
Accepted
time: 800ms
memory: 3600kb
input:
125896113 323676210
output:
3 1 59145949 66750163
result:
ok Correct
Test #18:
score: 0
Accepted
time: 0ms
memory: 3600kb
input:
381905348 434752500
output:
2 381538519 366829
result:
ok Correct
Test #19:
score: -100
Wrong Answer
time: 0ms
memory: 3584kb
input:
78916498 653897673
output:
1 78916498 2 470376968 -391460470
result:
wrong output format Extra information in the output file