Task: | Bittijono |
Sender: | Yytsi |
Submission time: | 2017-10-03 23:46:07 +0300 |
Language: | C++ |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
#2 | WRONG ANSWER | 0 |
#3 | WRONG ANSWER | 0 |
#4 | TIME LIMIT EXCEEDED | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | ACCEPTED | 0.06 s | 1 | details |
#2 | WRONG ANSWER | 0.05 s | 1 | details |
#3 | ACCEPTED | 0.04 s | 1 | details |
#4 | ACCEPTED | 0.04 s | 1 | details |
#5 | WRONG ANSWER | 0.03 s | 1 | details |
#6 | ACCEPTED | 0.06 s | 1 | details |
#7 | WRONG ANSWER | 0.04 s | 1 | details |
#8 | WRONG ANSWER | 0.05 s | 1 | details |
#9 | WRONG ANSWER | 0.04 s | 1 | details |
#10 | WRONG ANSWER | 0.05 s | 1 | details |
#11 | WRONG ANSWER | 0.05 s | 2 | details |
#12 | WRONG ANSWER | 0.04 s | 2 | details |
#13 | WRONG ANSWER | 0.06 s | 2 | details |
#14 | WRONG ANSWER | 0.05 s | 2 | details |
#15 | ACCEPTED | 0.04 s | 2 | details |
#16 | ACCEPTED | 0.05 s | 2 | details |
#17 | ACCEPTED | 0.05 s | 2 | details |
#18 | WRONG ANSWER | 0.05 s | 2 | details |
#19 | WRONG ANSWER | 0.05 s | 2 | details |
#20 | WRONG ANSWER | 0.04 s | 2 | details |
#21 | WRONG ANSWER | 0.04 s | 3 | details |
#22 | ACCEPTED | 0.04 s | 3 | details |
#23 | ACCEPTED | 0.04 s | 3 | details |
#24 | WRONG ANSWER | 0.04 s | 3 | details |
#25 | WRONG ANSWER | 0.03 s | 3 | details |
#26 | WRONG ANSWER | 0.04 s | 3 | details |
#27 | WRONG ANSWER | 0.05 s | 3 | details |
#28 | ACCEPTED | 0.05 s | 3 | details |
#29 | WRONG ANSWER | 0.04 s | 3 | details |
#30 | WRONG ANSWER | 0.06 s | 3 | details |
#31 | ACCEPTED | 0.18 s | 4 | details |
#32 | ACCEPTED | 0.12 s | 4 | details |
#33 | TIME LIMIT EXCEEDED | -- | 4 | details |
#34 | ACCEPTED | 0.03 s | 4 | details |
#35 | TIME LIMIT EXCEEDED | -- | 4 | details |
#36 | ACCEPTED | 0.19 s | 4 | details |
#37 | ACCEPTED | 0.16 s | 4 | details |
#38 | WRONG ANSWER | 0.30 s | 4 | details |
#39 | ACCEPTED | 0.25 s | 4 | details |
#40 | WRONG ANSWER | 0.18 s | 4 | details |
Code
#include <iostream> #include <string> #include <algorithm> using namespace std; bool searchTrackedResult = false; string solution = ""; int bounds[27] = {1, 3, 6, 11, 19, 32, 53, 87, 142, 231, 375, 608, 985, 1595, 2582, 4179, 6763, 10944, 17709, 28655, 46366, 75023, 121391, 196416, 317809, 514227, 832038}; int numberOfDistinct(string str, int target) { int ones = 0; int zeros = 0; int distinct = 0; for (size_t i = 0; i < str.length(); i++) { char bit = str[i]; bool isOne = bit == '1'; int newSum = 1 + distinct; distinct = distinct - (isOne ? ones : zeros) + newSum; if (target == distinct) { searchTrackedResult = true; solution = str; } if (isOne) ones = newSum; else zeros = newSum; } return distinct; } int binSizeLowerBound(int n) { for (int i = 26; i != 0; i--) { int bound = bounds[i]; if (bound < n) { return i + 1; } } return 1; } string convertToBitString(size_t value) { string str(32, '0'); for (size_t i = 0; i < 32; i++) { if ((1LL << i) & value) str[31 - i] = '1'; } str = str.substr(str.find_first_not_of("0")); return str; } string findBitstring(string b, int n, int tries) { for (int test = 0; test < tries; test++) { int maxFitness = 123456879, fitIndex = -1; while (true) { bool foundImprovement = false; for (size_t i = 0; i < b.size(); i++) { char bit = b[i]; char rev = "01"[bit == '0']; b[i] = rev; int distinctSubs = numberOfDistinct(b, n); if (searchTrackedResult) return solution; //cout << b << " : " << distinctSubs << "\n"; int fitness = abs(distinctSubs - n); if (fitness == 0) { // Solution found. return b; } if (fitness < maxFitness) { maxFitness = fitness; fitIndex = (int)i; foundImprovement = true; } b[i] = bit; } if (foundImprovement) b[fitIndex] = "01"[b[fitIndex] == '0']; else { //cout << "No improvement found :-( shuffling\n"; random_shuffle(b.begin(), b.end()); break; } } } return "fail"; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); int n; cin >> n; bool found = false; string chains[6]={"10101010101010101010101010101", "10010010010010010010010010010", "01101101101101101101101101101", "00000000000000000000000000000", "11111111111111111111111111111", "11111110000000011111100000000"}; int len = binSizeLowerBound(n); int high = len + 2; for (int i = 0; i < 27; i++) if (bounds[i] == n) found = true; if (n == 1) cout << "1"; else if (found) cout << chains[0].substr(0, len + 1); else { for (int i = 0; i < 6; i++) { string p = chains[i].substr(0, high); string res = findBitstring(p, n, 10000); if (res != "fail") { cout << res; break; } } } /* cout << findBitstring("010101010100000001010101010", 832038, 1000) << "\n"; cout << findBitstring("100010001000100010001000100", 832038, 1000) << "\n"; cout << findBitstring("010101010100000001010101010", 832038, 1000) << "\n"; cout << findBitstring("010101010100000001010101010", 832038, 1000) << "\n";*/ //cout << m << "\n"; //cout << numberOfDistinct(str) << "\n"; return 0; }
Test details
Test 1
Group: 1
Verdict: ACCEPTED
input |
---|
1 |
correct output |
---|
1 |
user output |
---|
1 |
Test 2
Group: 1
Verdict: WRONG ANSWER
input |
---|
2 |
correct output |
---|
11 |
user output |
---|
001 |
Test 3
Group: 1
Verdict: ACCEPTED
input |
---|
3 |
correct output |
---|
10 |
user output |
---|
10 |
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 |
---|
0010 |
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 |
---|
11101 |
Test 8
Group: 1
Verdict: WRONG ANSWER
input |
---|
8 |
correct output |
---|
1100 |
user output |
---|
11001 |
Test 9
Group: 1
Verdict: WRONG ANSWER
input |
---|
9 |
correct output |
---|
1101 |
user output |
---|
00101 |
Test 10
Group: 1
Verdict: WRONG ANSWER
input |
---|
10 |
correct output |
---|
1001 |
user output |
---|
01101 |
Test 11
Group: 2
Verdict: WRONG ANSWER
input |
---|
38 |
correct output |
---|
1101011 |
user output |
---|
00001001 |
Test 12
Group: 2
Verdict: WRONG ANSWER
input |
---|
13 |
correct output |
---|
11011 |
user output |
---|
110110 |
Test 13
Group: 2
Verdict: WRONG ANSWER
input |
---|
90 |
correct output |
---|
111001010 |
user output |
---|
1100110000 |
Test 14
Group: 2
Verdict: WRONG ANSWER
input |
---|
25 |
correct output |
---|
110010 |
user output |
---|
1100101 |
Test 15
Group: 2
Verdict: ACCEPTED
input |
---|
82 |
correct output |
---|
111001101 |
user output |
---|
100010011 |
Test 16
Group: 2
Verdict: ACCEPTED
input |
---|
94 |
correct output |
---|
1100011110 |
user output |
---|
0111100011 |
Test 17
Group: 2
Verdict: ACCEPTED
input |
---|
100 |
correct output |
---|
1111001001 |
user output |
---|
0000110110 |
Test 18
Group: 2
Verdict: WRONG ANSWER
input |
---|
99 |
correct output |
---|
110010010 |
user output |
---|
0100100110 |
Test 19
Group: 2
Verdict: WRONG ANSWER
input |
---|
98 |
correct output |
---|
110110010 |
user output |
---|
0100110110 |
Test 20
Group: 2
Verdict: WRONG ANSWER
input |
---|
92 |
correct output |
---|
100110001 |
user output |
---|
0110011101 |
Test 21
Group: 3
Verdict: WRONG ANSWER
input |
---|
1666 |
correct output |
---|
101101100100101 |
user output |
---|
1100001100101101 |
Test 22
Group: 3
Verdict: ACCEPTED
input |
---|
897 |
correct output |
---|
11101001101010 |
user output |
---|
00100100110010 |
Test 23
Group: 3
Verdict: ACCEPTED
input |
---|
4466 |
correct output |
---|
111101010110100101 |
user output |
---|
101001011010101111 |
Test 24
Group: 3
Verdict: WRONG ANSWER
input |
---|
4240 |
correct output |
---|
11011001011010101 |
user output |
---|
111001011001101100 |
Test 25
Group: 3
Verdict: WRONG ANSWER
input |
---|
3089 |
correct output |
---|
1011001010100101 |
user output |
---|
11101010110110100 |
Test 26
Group: 3
Verdict: WRONG ANSWER
input |
---|
4697 |
correct output |
---|
11010101101010110 |
user output |
---|
110010011100110010 |
Test 27
Group: 3
Verdict: WRONG ANSWER
input |
---|
4608 |
correct output |
---|
11010110101001010 |
user output |
---|
001110010110100100 |
Test 28
Group: 3
Verdict: ACCEPTED
input |
---|
4625 |
correct output |
---|
111011001100101001 |
user output |
---|
010011001011110101 |
Test 29
Group: 3
Verdict: WRONG ANSWER
input |
---|
4611 |
correct output |
---|
11010101010101100 |
user output |
---|
110010101010101000 |
Test 30
Group: 3
Verdict: WRONG ANSWER
input |
---|
4917 |
correct output |
---|
10110100101010110 |
user output |
---|
101101101001100011 |
Test 31
Group: 4
Verdict: ACCEPTED
input |
---|
178555 |
correct output |
---|
1011010110110101010110110 |
user output |
---|
0110110101010110110101101 |
Test 32
Group: 4
Verdict: ACCEPTED
input |
---|
864856 |
correct output |
---|
10111010110110100100101010010 |
user output |
---|
10110110011010101001110011010 |
Test 33
Group: 4
Verdict: TIME LIMIT EXCEEDED
input |
---|
112146 |
correct output |
---|
1101110101011001100100110 |
user output |
---|
(empty) |
Test 34
Group: 4
Verdict: ACCEPTED
input |
---|
741124 |
correct output |
---|
1011010011010101100101011010 |
user output |
---|
1010010101100101010011010010 |
Test 35
Group: 4
Verdict: TIME LIMIT EXCEEDED
input |
---|
511902 |
correct output |
---|
1011010100011010100101001110 |
user output |
---|
(empty) |
Test 36
Group: 4
Verdict: ACCEPTED
input |
---|
920019 |
correct output |
---|
11100100101101010101001101010 |
user output |
---|
10100101010101110001010011010 |
Test 37
Group: 4
Verdict: ACCEPTED
input |
---|
933943 |
correct output |
---|
10101011010100100110100111001 |
user output |
---|
10101011010100100110100111001 |
Test 38
Group: 4
Verdict: WRONG ANSWER
input |
---|
973410 |
correct output |
---|
1011010101011010101010101001 |
user output |
---|
10100110011011011010110101001 |
Test 39
Group: 4
Verdict: ACCEPTED
input |
---|
954943 |
correct output |
---|
10110110010011010100100110101 |
user output |
---|
01010011011010100110110010010 |
Test 40
Group: 4
Verdict: WRONG ANSWER
input |
---|
911674 |
correct output |
---|
1010110010110101010101010110 |
user output |
---|
11001010010100100110100101101 |