Task: | Program |
Sender: | aalto2024f_008 |
Submission time: | 2024-10-02 17:12:13 +0300 |
Language: | C++ (C++11) |
Status: | READY |
Result: | WRONG ANSWER |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.00 s | details |
#2 | ACCEPTED | 0.00 s | details |
#3 | WRONG ANSWER | 0.00 s | details |
#4 | WRONG ANSWER | 0.00 s | details |
#5 | WRONG ANSWER | 0.00 s | details |
#6 | WRONG ANSWER | 0.00 s | details |
#7 | ACCEPTED | 0.00 s | details |
#8 | ACCEPTED | 0.00 s | details |
#9 | ACCEPTED | 0.00 s | details |
#10 | WRONG ANSWER | 0.00 s | details |
#11 | ACCEPTED | 0.02 s | details |
#12 | WRONG ANSWER | 0.02 s | details |
#13 | WRONG ANSWER | 0.02 s | details |
#14 | WRONG ANSWER | 0.02 s | details |
#15 | WRONG ANSWER | 0.02 s | details |
#16 | WRONG ANSWER | 0.03 s | details |
#17 | ACCEPTED | 0.02 s | details |
#18 | WRONG ANSWER | 0.02 s | details |
#19 | WRONG ANSWER | 0.03 s | details |
#20 | ACCEPTED | 0.02 s | details |
#21 | RUNTIME ERROR | 0.00 s | details |
#22 | RUNTIME ERROR | 0.00 s | details |
#23 | RUNTIME ERROR | 0.00 s | details |
#24 | RUNTIME ERROR | 0.00 s | details |
#25 | RUNTIME ERROR | 0.00 s | details |
#26 | RUNTIME ERROR | 0.00 s | details |
#27 | RUNTIME ERROR | 0.00 s | details |
#28 | RUNTIME ERROR | 0.00 s | details |
#29 | RUNTIME ERROR | 0.00 s | details |
#30 | RUNTIME ERROR | 0.00 s | details |
Compiler report
input/code.cpp: In function 'int main()': input/code.cpp:16:21: warning: comparison of integer expressions of different signedness: 'int' and 'long long unsigned int' [-Wsign-compare] 16 | for (int i = 1; i <= n / 2; i++) { | ~~^~~~~~~~
Code
#include <bits/stdc++.h> #include <vector> #define ll unsigned long long using namespace std; int main() { ll n = 0; cin >> n; const ll maxx = 10000000000000000000u; auto min_ways = vector<ll>(n + 1, maxx); min_ways[1] = 0; auto idx_to = vector<pair<ll, bool>>(n + 1); for (int i = 1; i <= n / 2; i++) { if (min_ways[i] + 1 < min_ways[i * 2]) { min_ways[i * 2] = min_ways[i] + 1; idx_to[i * 2] = {i, true}; } if (min_ways[i] + 1 < min_ways[i + 3]) { min_ways[i + 3] = min_ways[i] + 1; idx_to[i + 3] = {i, false}; } } if (min_ways[n] == maxx) { cout << "0"; return 0; } cout << min_ways[n] + 1 << endl; ll i = n; while (i > 1) { auto next = idx_to[i]; cout << (next.second ? "MUL" : "ADD") << '\n'; i = next.first; } cout << "END"; }
Test details
Test 1
Verdict: ACCEPTED
input |
---|
58 |
correct output |
---|
8 MUL ADD MUL ADD ... |
user output |
---|
8 MUL ADD MUL ADD ... |
Test 2
Verdict: ACCEPTED
input |
---|
72 |
correct output |
---|
0 |
user output |
---|
0 |
Test 3
Verdict: WRONG ANSWER
input |
---|
83 |
correct output |
---|
8 MUL ADD MUL MUL ... |
user output |
---|
0 |
Test 4
Verdict: WRONG ANSWER
input |
---|
53 |
correct output |
---|
8 ADD MUL ADD MUL ... |
user output |
---|
0 |
Test 5
Verdict: WRONG ANSWER
input |
---|
100 |
correct output |
---|
8 ADD MUL ADD MUL ... |
user output |
---|
8 MUL MUL ADD MUL ... |
Test 6
Verdict: WRONG ANSWER
input |
---|
64 |
correct output |
---|
6 ADD MUL MUL MUL ... |
user output |
---|
6 MUL MUL MUL MUL ... |
Test 7
Verdict: ACCEPTED
input |
---|
84 |
correct output |
---|
0 |
user output |
---|
0 |
Test 8
Verdict: ACCEPTED
input |
---|
60 |
correct output |
---|
0 |
user output |
---|
0 |
Test 9
Verdict: ACCEPTED
input |
---|
51 |
correct output |
---|
0 |
user output |
---|
0 |
Test 10
Verdict: WRONG ANSWER
input |
---|
77 |
correct output |
---|
9 ADD ADD MUL ADD ... |
user output |
---|
0 |
Test 11
Verdict: ACCEPTED
input |
---|
941694 |
correct output |
---|
0 |
user output |
---|
0 |
Test 12
Verdict: WRONG ANSWER
input |
---|
905674 |
correct output |
---|
30 MUL ADD MUL ADD ... |
user output |
---|
30 MUL ADD MUL ADD ... Truncated |
Test 13
Verdict: WRONG ANSWER
input |
---|
908426 |
correct output |
---|
29 ADD MUL ADD MUL ... |
user output |
---|
29 MUL ADD MUL ADD ... Truncated |
Test 14
Verdict: WRONG ANSWER
input |
---|
960500 |
correct output |
---|
31 ADD ADD MUL MUL ... |
user output |
---|
31 MUL MUL ADD MUL ... Truncated |
Test 15
Verdict: WRONG ANSWER
input |
---|
902101 |
correct output |
---|
27 MUL ADD MUL ADD ... |
user output |
---|
0 |
Test 16
Verdict: WRONG ANSWER
input |
---|
994208 |
correct output |
---|
27 ADD ADD MUL MUL ... |
user output |
---|
27 MUL MUL MUL MUL ... Truncated |
Test 17
Verdict: ACCEPTED
input |
---|
923538 |
correct output |
---|
0 |
user output |
---|
0 |
Test 18
Verdict: WRONG ANSWER
input |
---|
950287 |
correct output |
---|
24 MUL ADD MUL ADD ... |
user output |
---|
0 |
Test 19
Verdict: WRONG ANSWER
input |
---|
950516 |
correct output |
---|
29 ADD ADD MUL MUL ... |
user output |
---|
29 MUL MUL ADD MUL ... Truncated |
Test 20
Verdict: ACCEPTED
input |
---|
921882 |
correct output |
---|
0 |
user output |
---|
0 |
Test 21
Verdict: RUNTIME ERROR
input |
---|
933942296856681219 |
correct output |
---|
0 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc
Test 22
Verdict: RUNTIME ERROR
input |
---|
955775764385016720 |
correct output |
---|
0 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc
Test 23
Verdict: RUNTIME ERROR
input |
---|
981578916796073406 |
correct output |
---|
0 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc
Test 24
Verdict: RUNTIME ERROR
input |
---|
927875200723222396 |
correct output |
---|
94 MUL ADD MUL MUL ... |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc
Test 25
Verdict: RUNTIME ERROR
input |
---|
990125206148420558 |
correct output |
---|
84 ADD MUL ADD MUL ... |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc
Test 26
Verdict: RUNTIME ERROR
input |
---|
964804802247123102 |
correct output |
---|
0 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc
Test 27
Verdict: RUNTIME ERROR
input |
---|
996610423667404231 |
correct output |
---|
96 MUL ADD MUL ADD ... |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc
Test 28
Verdict: RUNTIME ERROR
input |
---|
948665008088793691 |
correct output |
---|
86 MUL ADD MUL ADD ... |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc
Test 29
Verdict: RUNTIME ERROR
input |
---|
969397787818953279 |
correct output |
---|
0 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc
Test 30
Verdict: RUNTIME ERROR
input |
---|
918471787211371085 |
correct output |
---|
90 ADD MUL ADD MUL ... |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc