| Task: | Bittijono |
| Sender: | inkeri |
| Submission time: | 2017-10-11 12:32:13 +0300 |
| Language: | C++ |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| #2 | WRONG ANSWER | 0 |
| #3 | WRONG ANSWER | 0 |
| #4 | WRONG ANSWER | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.05 s | 1 | details |
| #2 | ACCEPTED | 0.06 s | 1 | details |
| #3 | WRONG ANSWER | 0.07 s | 1 | details |
| #4 | ACCEPTED | 0.06 s | 1 | details |
| #5 | WRONG ANSWER | 0.05 s | 1 | details |
| #6 | ACCEPTED | 0.06 s | 1 | details |
| #7 | WRONG ANSWER | 0.06 s | 1 | details |
| #8 | WRONG ANSWER | 0.06 s | 1 | details |
| #9 | ACCEPTED | 0.04 s | 1 | details |
| #10 | ACCEPTED | 0.07 s | 1 | details |
| #11 | ACCEPTED | 0.05 s | 2 | details |
| #12 | ACCEPTED | 0.06 s | 2 | details |
| #13 | WRONG ANSWER | 0.06 s | 2 | details |
| #14 | WRONG ANSWER | 0.06 s | 2 | details |
| #15 | ACCEPTED | 0.05 s | 2 | details |
| #16 | WRONG ANSWER | 0.05 s | 2 | details |
| #17 | ACCEPTED | 0.04 s | 2 | details |
| #18 | WRONG ANSWER | 0.06 s | 2 | details |
| #19 | WRONG ANSWER | 0.04 s | 2 | details |
| #20 | ACCEPTED | 0.06 s | 2 | details |
| #21 | WRONG ANSWER | 0.06 s | 3 | details |
| #22 | WRONG ANSWER | 0.04 s | 3 | details |
| #23 | ACCEPTED | 0.05 s | 3 | details |
| #24 | ACCEPTED | 0.07 s | 3 | details |
| #25 | ACCEPTED | 0.05 s | 3 | details |
| #26 | WRONG ANSWER | 0.06 s | 3 | details |
| #27 | WRONG ANSWER | 0.05 s | 3 | details |
| #28 | WRONG ANSWER | 0.06 s | 3 | details |
| #29 | WRONG ANSWER | 0.05 s | 3 | details |
| #30 | WRONG ANSWER | 0.05 s | 3 | details |
| #31 | WRONG ANSWER | 0.51 s | 4 | details |
| #32 | RUNTIME ERROR | 0.87 s | 4 | details |
| #33 | ACCEPTED | 0.62 s | 4 | details |
| #34 | RUNTIME ERROR | 0.72 s | 4 | details |
| #35 | RUNTIME ERROR | 0.72 s | 4 | details |
| #36 | RUNTIME ERROR | 0.64 s | 4 | details |
| #37 | RUNTIME ERROR | 0.79 s | 4 | details |
| #38 | RUNTIME ERROR | 0.57 s | 4 | details |
| #39 | RUNTIME ERROR | 0.73 s | 4 | details |
| #40 | RUNTIME ERROR | 0.68 s | 4 | details |
Code
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
ll tavoite;
cin >> tavoite;
if (tavoite == 1) {
cout << tavoite << endl;
return 0;
}
ll pituus = 1;
ll maara = 1;
ll prev0 = 2;
ll prev1 = 1;
while (maara < tavoite) {
pituus++;
if (pituus % 2 == 1) {
maara += prev1;
prev0 += prev1;
} else {
maara += prev0;
prev1 += prev0;
}
}
queue<array<ll, 4>> jonot;
ll length = pow(2, pituus - 2);
ll arvo = length - 1;
//summa, prev0, prev1, arvo
jonot.push({1, 2, 1});
for (ll i = 1; i < length; i++) {
//cout << jonot.size() << endl;
array<ll, 4> arvot = jonot.front();
jonot.pop();
//lisätään 0
jonot.push({arvot[0] + arvot[1], arvot[1], arvot[1] + arvot[2]});
//lisätään 1
jonot.push({arvot[0] + arvot[2], arvot[1] + arvot[2], arvot[2]});
}
while (true) {
arvo++;
array<ll, 4> arvot = jonot.front();
jonot.pop();
if (arvot[0] > tavoite) {
jonot.push(arvot);
continue;
}
ll maara1 = arvot[0] + arvot[1];
ll maara2 = arvot[0] + arvot[2];
if (maara1 == tavoite) {
arvo = 2 * arvo + 1;
string jono = bitset<64>(arvo).to_string();
pituus = log(arvo)/log(2) + 1;
jono.erase(0, 64 - pituus);
cout << jono << endl;
return 0;
} if (maara2 == tavoite) {
arvo = 2 * arvo + 1;
string jono = bitset<64>(arvo).to_string();
pituus = log(arvo)/log(2) + 1;
jono.erase(0, 64 - pituus);
cout << jono << endl;
return 0;
}
jonot.push({maara1, arvot[1], arvot[1] + arvot[2]});
jonot.push({maara2, arvot[1] + arvot[2], arvot[2]});
}
}
Test details
Test 1
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 1 |
| correct output |
|---|
| 1 |
| user output |
|---|
| 1 |
Test 2
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 2 |
| correct output |
|---|
| 11 |
| user output |
|---|
| 11 |
Test 3
Group: 1
Verdict: WRONG ANSWER
| input |
|---|
| 3 |
| correct output |
|---|
| 10 |
| user output |
|---|
| 11 |
Test 4
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 4 |
| correct output |
|---|
| 1111 |
| user output |
|---|
| 1111 |
Test 5
Group: 1
Verdict: WRONG ANSWER
| input |
|---|
| 5 |
| correct output |
|---|
| 110 |
| user output |
|---|
| 101 |
Test 6
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 6 |
| correct output |
|---|
| 101 |
| user output |
|---|
| 101 |
Test 7
Group: 1
Verdict: WRONG ANSWER
| input |
|---|
| 7 |
| correct output |
|---|
| 1110 |
| user output |
|---|
| 1001 |
Test 8
Group: 1
Verdict: WRONG ANSWER
| input |
|---|
| 8 |
| correct output |
|---|
| 1100 |
| user output |
|---|
| 1101 |
Test 9
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 9 |
| correct output |
|---|
| 1101 |
| user output |
|---|
| 1011 |
Test 10
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 10 |
| correct output |
|---|
| 1001 |
| user output |
|---|
| 1001 |
Test 11
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 38 |
| correct output |
|---|
| 1101011 |
| user output |
|---|
| 1101011 |
Test 12
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 13 |
| correct output |
|---|
| 11011 |
| user output |
|---|
| 11011 |
Test 13
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 90 |
| correct output |
|---|
| 111001010 |
| user output |
|---|
| 100100011 |
Test 14
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 25 |
| correct output |
|---|
| 110010 |
| user output |
|---|
| 101101 |
Test 15
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 82 |
| correct output |
|---|
| 111001101 |
| user output |
|---|
| 100010011 |
Test 16
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 94 |
| correct output |
|---|
| 1100011110 |
| user output |
|---|
| 1000011101 |
Test 17
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 100 |
| correct output |
|---|
| 1111001001 |
| user output |
|---|
| 1001001111 |
Test 18
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 99 |
| correct output |
|---|
| 110010010 |
| user output |
|---|
| 100011011 |
Test 19
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 98 |
| correct output |
|---|
| 110110010 |
| user output |
|---|
| 100111011 |
Test 20
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 92 |
| correct output |
|---|
| 100110001 |
| user output |
|---|
| 100011001 |
Test 21
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 1666 |
| correct output |
|---|
| 101101100100101 |
| user output |
|---|
| 100100010101011 |
Test 22
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 897 |
| correct output |
|---|
| 11101001101010 |
| user output |
|---|
| 10100010110101 |
Test 23
Group: 3
Verdict: ACCEPTED
| input |
|---|
| 4466 |
| correct output |
|---|
| 111101010110100101 |
| user output |
|---|
| 101001001110001011 |
Test 24
Group: 3
Verdict: ACCEPTED
| input |
|---|
| 4240 |
| correct output |
|---|
| 11011001011010101 |
| user output |
|---|
| 10101011010011011 |
Test 25
Group: 3
Verdict: ACCEPTED
| input |
|---|
| 3089 |
| correct output |
|---|
| 1011001010100101 |
| user output |
|---|
| 1010010101001101 |
Test 26
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 4697 |
| correct output |
|---|
| 11010101101010110 |
| user output |
|---|
| 10010101001010101 |
Test 27
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 4608 |
| correct output |
|---|
| 11010110101001010 |
| user output |
|---|
| 10101101010010101 |
Test 28
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 4625 |
| correct output |
|---|
| 111011001100101001 |
| user output |
|---|
| 100010101110110111 |
Test 29
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 4611 |
| correct output |
|---|
| 11010101010101100 |
| user output |
|---|
| 10101101011010101 |
Test 30
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 4917 |
| correct output |
|---|
| 10110100101010110 |
| user output |
|---|
| 10010101011010011 |
Test 31
Group: 4
Verdict: WRONG ANSWER
| input |
|---|
| 178555 |
| correct output |
|---|
| 1011010110110101010110110 |
| user output |
|---|
| 1001001010101001001010011 |
Test 32
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 864856 |
| correct output |
|---|
| 10111010110110100100101010010 |
| user output |
|---|
| (empty) |
Test 33
Group: 4
Verdict: ACCEPTED
| input |
|---|
| 112146 |
| correct output |
|---|
| 1101110101011001100100110 |
| user output |
|---|
| 1000101000101010010110011 |
Test 34
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 741124 |
| correct output |
|---|
| 1011010011010101100101011010 |
| user output |
|---|
| (empty) |
Test 35
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 511902 |
| correct output |
|---|
| 1011010100011010100101001110 |
| user output |
|---|
| (empty) |
Test 36
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 920019 |
| correct output |
|---|
| 11100100101101010101001101010 |
| user output |
|---|
| (empty) |
Test 37
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 933943 |
| correct output |
|---|
| 10101011010100100110100111001 |
| user output |
|---|
| (empty) |
Test 38
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 973410 |
| correct output |
|---|
| 1011010101011010101010101001 |
| user output |
|---|
| (empty) |
Test 39
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 954943 |
| correct output |
|---|
| 10110110010011010100100110101 |
| user output |
|---|
| (empty) |
Test 40
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 911674 |
| correct output |
|---|
| 1010110010110101010101010110 |
| user output |
|---|
| (empty) |
