CSES - Datatähti 2016 alku - Results
Submission details
Task:Bittipeli
Sender:retki5
Submission time:2015-10-05 20:27:00 +0300
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
#40
Test results
testverdicttimegroup
#10.06 s1details
#20.05 s1details
#30.06 s1details
#40.05 s1details
#50.06 s1details
#60.05 s1details
#70.06 s1details
#80.05 s1details
#9ACCEPTED0.05 s1details
#100.05 s1details
#110.05 s1details
#120.05 s1details
#130.05 s1details
#140.05 s1details
#150.05 s1details
#160.05 s1details
#170.05 s1details
#180.05 s1details
#190.04 s1details
#20ACCEPTED0.06 s1details
#210.05 s2details
#220.06 s2details
#230.05 s2details
#24ACCEPTED0.06 s2details
#250.05 s2details
#260.06 s2details
#270.05 s2details
#280.05 s2details
#290.05 s2details
#300.05 s2details
#310.06 s2details
#32ACCEPTED0.05 s2details
#330.05 s2details
#340.05 s2details
#350.06 s2details
#360.05 s2details
#370.05 s2details
#380.06 s2details
#390.05 s2details
#400.05 s2details
#41ACCEPTED0.06 s3details
#420.06 s3details
#430.05 s3details
#440.05 s3details
#450.05 s3details
#46ACCEPTED0.06 s3details
#470.06 s3details
#480.05 s3details
#490.06 s3details
#500.06 s3details
#510.05 s3details
#520.06 s3details
#530.05 s3details
#540.05 s3details
#550.05 s3details
#560.24 s3details
#570.28 s3details
#580.22 s3details
#590.40 s3details
#600.18 s3details
#610.06 s4details
#620.06 s4details
#630.05 s4details
#640.06 s4details
#650.07 s4details
#660.05 s4details
#670.07 s4details
#680.06 s4details
#69ACCEPTED0.07 s4details
#700.06 s4details
#710.05 s4details
#720.05 s4details
#73ACCEPTED0.05 s4details
#740.05 s4details
#750.05 s4details
#760.00 s4details
#770.00 s4details
#780.00 s4details
#790.00 s4details
#800.00 s4details

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:14:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for (int i = 1; i < kuk.length(); i++) {
                    ^
input/code.cpp:44:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int i = 0; i < kek.size(); i++) {
                     ^
input/code.cpp:60:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
    if (k < 0 || k > kek.size() - 1) {
                   ^
input/code.cpp:64:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     if (k == 0 || k == kek.size() - 1) {
                     ^
input/code.cpp:74:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for (int i = 0; i < kek.size(); i++) {
                       ^
input/code.cpp:93:20: warning: comparison between signed and unsigned integer expressions [-Ws...

Code

#include <iostream>
#include <vector>
int main() {
	std::string kuk;
	std::cin >> kuk;
	int cu[3];
	//1 or 0 - 1 or longer (2)
	std::vector<std::pair<int, int>> kek;
	std::vector<int> ans;
	int lasto = kuk[0] - 48;
	int lastn = 0;
	int ys = 0;
	int kas = 0;
	for (int i = 1; i < kuk.length(); i++) {
		if (lasto != kuk[i] - 48) {
			if (i - lastn > 1) {
				kek.push_back(std::make_pair(kuk[i - 1] - 48, 2));
				kas++;
			}
			else {
				kek.push_back(std::make_pair(kuk[i - 1] - 48, 1));
				ys++;
			}
			lastn = i;
		}
		lasto = kuk[i] - 48;
	}
	int asdf = 1;
	if (kuk.size() - lastn > 1) asdf = 2;
	kek.push_back(std::make_pair(kuk[kuk.size() - 1] - 48, asdf));
	
	int k = 1;
	int tt = 1;
	int found = -1;
	int dd = 1;
	bool aans = false;
	int cur = -1;
	while (true) {
		if (aans) break;
		cur = kek.size() / 2 - 1;
		if (kek.size() % 2) cur = kek.size() / 2;
		bool rdy = true;
		bool fail = true;
		for (int i = 0; i < kek.size(); i++) {
			if (kek[i].second == 1) {
				rdy = false;
			}
			if (kek[i].second == 2) fail = false;
		}
		if (fail) {
			aans = true;
			break;
		}
		if (rdy) break;
		int in = 0;
		while (true) {
			//if ()
			k = cur + in;
			//std::cout << "k: " << k << ", in: " << in << std::endl;
			if (k < 0 || k > kek.size() - 1) {
				break;
			}
			if (kek[k].second == 2) {
				if (k == 0 || k == kek.size() - 1) {
					aans = true;
					break;
				}
				kek.insert(kek.begin() + k - 1, std::make_pair(kek[k - 1].first, 2));
				for (int a = 0; a < 3; a++) {
					kek.erase(kek.begin() + k);
				}
				ans.push_back(k);
				found = -1;
				for (int i = 0; i < kek.size(); i++) {
					std::cout << kek[i].first;
					if (kek[i].second == 2) {
						std::cout << kek[i].first;
					}
				}
				std::cout << std::endl;
				break;
			}

			//std::cout << "k: " << k << ", in: " << in << std::endl;
			if (in > 0) { in = -in; }
			else in = -in + 1;
		}
	}
	if (aans) {
		std::cout << "QAQ\n";
		return 0;
	}
	for (int i = 0; i < kek.size(); i++) {
		ans.push_back(1);
	}
	std::cout << ans.size() << std::endl;
	for (int i = 0; i < ans.size(); i++) {
		std::cout << ans[i] << " ";
	}
	std::cout << "\n";
	return 0;
}

Test details

Test 1

Group: 1

Verdict:

input
1011001010

correct output
QAQ

user output
1011010
10010
110
QAQ

Test 2

Group: 1

Verdict:

input
0000001001

correct output
3
1 1 1 

user output
0011
3
2 1 1 

Test 3

Group: 1

Verdict:

input
0111011100

correct output
3
2 1 1 

user output
01100
00
3
3 1 1 

Test 4

Group: 1

Verdict:

input
0100100100

correct output
4
2 1 1 1 

user output
01001100
01100
00
4
4 2 1 1 

Test 5

Group: 1

Verdict:

input
1110010110

correct output
4
2 1 1 1 

user output
110110
1100
4
1 2 1 1 

Test 6

Group: 1

Verdict:

input
1111110110

correct output
3
1 1 1 

user output
1100
3
2 1 1 

Test 7

Group: 1

Verdict:

input
0011110001

correct output
3
1 2 1 

user output
001
QAQ

Test 8

Group: 1

Verdict:

input
0111111000

correct output
2
1 1 

user output
00
2
1 1 

Test 9

Group: 1

Verdict: ACCEPTED

input
1111111100

correct output
2
1 1 

user output
2
1 1 

Test 10

Group: 1

Verdict:

input
1000010011

correct output
3
2 1 1 

user output
10011
11
3
3 1 1 

Test 11

Group: 1

Verdict:

input
1101110000

correct output
3
1 1 1 

user output
1100
3
2 1 1 

Test 12

Group: 1

Verdict:

input
1101101100

correct output
4
1 2 1 1 

user output
11001100
5
2 1 1 1 1 

Test 13

Group: 1

Verdict:

input
0100111110

correct output
3
1 1 1 

user output
0110
00
3
2 1 1 

Test 14

Group: 1

Verdict:

input
1101001011

correct output
4
2 2 2 1 

user output
11011011
110011
5
3 2 1 1 1 

Test 15

Group: 1

Verdict:

input
1110110010

correct output
4
1 2 1 1 

user output
110010
110
QAQ

Test 16

Group: 1

Verdict:

input
0011011100

correct output
3
3 2 1 

user output
001100
4
3 1 1 1 

Test 17

Group: 1

Verdict:

input
1100101011

correct output
QAQ

user output
1101011
QAQ

Test 18

Group: 1

Verdict:

input
1101100111

correct output
3
2 2 1 

user output
110011
4
2 1 1 1 

Test 19

Group: 1

Verdict:

input
0110000100

correct output
3
2 1 1 

user output
01100
00
3
2 1 1 

Test 20

Group: 1

Verdict: ACCEPTED

input
0000101000

correct output
QAQ

user output
QAQ

Test 21

Group: 2

Verdict:

input
1110010100

correct output
QAQ

user output
110100
QAQ

Test 22

Group: 2

Verdict:

input
1110010000

correct output
3
2 1 1 

user output
1100
3
1 1 1 

Test 23

Group: 2

Verdict:

input
1001101100

correct output
4
1 1 1 1 

user output
1001100
1100
4
2 1 1 1 

Test 24

Group: 2

Verdict: ACCEPTED

input
0000000111

correct output
2
1 1 

user output
2
1 1 

Test 25

Group: 2

Verdict:

input
0011111110

correct output
2
2 1 

user output
00
2
1 1 

Test 26

Group: 2

Verdict:

input
1100101100

correct output
4
2 1 1 1 

user output
1101100
1100
4
1 2 1 1 

Test 27

Group: 2

Verdict:

input
0111101110

correct output
3
2 1 1 

user output
01100
00
3
3 1 1 

Test 28

Group: 2

Verdict:

input
0000011011

correct output
3
2 1 1 

user output
0011
3
1 1 1 

Test 29

Group: 2

Verdict:

input
1110011101

correct output
3
3 2 1 

user output
11001
11
3
2 1 1 

Test 30

Group: 2

Verdict:

input
0001011011

correct output
4
1 1 1 1 

user output
0010011
0011
4
3 2 1 1 

Test 31

Group: 2

Verdict:

input
0010110011

correct output
4
1 1 1 1 

user output
0010011
0011
4
3 2 1 1 

Test 32

Group: 2

Verdict: ACCEPTED

input
0011100000

correct output
2
2 1 

user output
3
1 1 1 

Test 33

Group: 2

Verdict:

input
1110100110

correct output
4
1 1 1 1 

user output
110110
1100
4
3 2 1 1 

Test 34

Group: 2

Verdict:

input
0110110111

correct output
4
2 1 1 1 

user output
0110011
0011
4
3 1 1 1 

Test 35

Group: 2

Verdict:

input
1110110010

correct output
4
1 2 1 1 

user output
110010
110
QAQ

Test 36

Group: 2

Verdict:

input
110011001100110011001010101010...

correct output
QAQ

user output
110011001100110011010101010101...

Test 37

Group: 2

Verdict:

input
110011001100110011001100101010...

correct output
QAQ

user output
110011001100110011001101010101...

Test 38

Group: 2

Verdict:

input
110011001100110011001100110011...

correct output
31
1 20 20 20 20 20 20 20 20 20 2...

user output
110011001100110011001100110011...

Test 39

Group: 2

Verdict:

input
010101010101010101010101010101...

correct output
48
2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
010101010101010101010101010101...

Test 40

Group: 2

Verdict:

input
011010000011111011110000110011...

correct output
23
13 13 12 11 11 11 11 10 9 9 9 ...

user output
011010011011001100110100110101...

Test 41

Group: 3

Verdict: ACCEPTED

input
0010101000

correct output
QAQ

user output
QAQ

Test 42

Group: 3

Verdict:

input
0100010110

correct output
4
2 1 1 1 

user output
0110110
01100
00
4
2 3 1 1 

Test 43

Group: 3

Verdict:

input
0100110110

correct output
4
2 1 1 1 

user output
0100110
0110
00
4
3 2 1 1 

Test 44

Group: 3

Verdict:

input
1110000001

correct output
2
2 1 

user output
11
2
1 1 

Test 45

Group: 3

Verdict:

input
0001001110

correct output
3
2 2 1 

user output
00110
00
3
2 1 1 

Test 46

Group: 3

Verdict: ACCEPTED

input
0011100011

correct output
3
1 2 1 

user output
4
1 1 1 1 

Test 47

Group: 3

Verdict:

input
0100111100

correct output
3
1 1 1 

user output
01100
00
3
2 1 1 

Test 48

Group: 3

Verdict:

input
0001001000

correct output
3
2 2 1 

user output
001100
4
2 1 1 1 

Test 49

Group: 3

Verdict:

input
0100100010

correct output
4
2 1 1 1 

user output
0100110
0110
00
4
4 2 1 1 

Test 50

Group: 3

Verdict:

input
1100101110

correct output
4
2 1 1 1 

user output
110110
1100
4
1 2 1 1 

Test 51

Group: 3

Verdict:

input
1000111011

correct output
3
2 1 1 

user output
10011
11
3
2 1 1 

Test 52

Group: 3

Verdict:

input
1000111111

correct output
2
1 1 

user output
11
2
1 1 

Test 53

Group: 3

Verdict:

input
0110011100

correct output
3
2 1 1 

user output
01100
00
3
2 1 1 

Test 54

Group: 3

Verdict:

input
0001000110

correct output
3
2 2 1 

user output
00110
00
3
2 1 1 

Test 55

Group: 3

Verdict:

input
1110110010

correct output
4
1 2 1 1 

user output
110010
110
QAQ

Test 56

Group: 3

Verdict:

input
110011001100110011001100110011...

correct output
QAQ

user output
110011001100110011001100110011...

Test 57

Group: 3

Verdict:

input
110011001100110011001100110011...

correct output
QAQ

user output
110011001100110011001100110011...

Test 58

Group: 3

Verdict:

input
110011001100110011001100110011...

correct output
1501
1 1000 1000 1000 1000 1000 100...

user output
110011001100110011001100110011...

Test 59

Group: 3

Verdict:

input
010101010101010101010101010101...

correct output
2498
2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
010101010101010101010101010101...

Test 60

Group: 3

Verdict:

input
011100011001011111111000010110...

correct output
1272
1 1 648 647 646 646 645 645 64...

user output
011001100101100101101001011011...

Test 61

Group: 4

Verdict:

input
1110101110

correct output
QAQ

user output
110100
QAQ

Test 62

Group: 4

Verdict:

input
0111001011

correct output
4
2 1 1 1 

user output
011011
0011
4
2 1 1 1 

Test 63

Group: 4

Verdict:

input
1101111101

correct output
3
2 2 1 

user output
11001
11
3
2 1 1 

Test 64

Group: 4

Verdict:

input
1001110001

correct output
3
2 1 1 

user output
1001
11
3
2 1 1 

Test 65

Group: 4

Verdict:

input
1000000011

correct output
2
1 1 

user output
11
2
1 1 

Test 66

Group: 4

Verdict:

input
0100010111

correct output
4
1 1 1 1 

user output
011011
0011
4
2 1 1 1 

Test 67

Group: 4

Verdict:

input
0100111010

correct output
4
2 1 1 1 

user output
010010
0110
00
4
3 2 1 1 

Test 68

Group: 4

Verdict:

input
0010111101

correct output
4
1 1 1 1 

user output
001001
0011
4
3 2 1 1 

Test 69

Group: 4

Verdict: ACCEPTED

input
0011111000

correct output
2
2 1 

user output
3
1 1 1 

Test 70

Group: 4

Verdict:

input
1101001101

correct output
4
2 2 2 1 

user output
1101101
11001
11
4
3 2 1 1 

Test 71

Group: 4

Verdict:

input
0110111000

correct output
3
2 1 1 

user output
01100
00
3
3 1 1 

Test 72

Group: 4

Verdict:

input
1100110111

correct output
3
3 2 1 

user output
110011
4
2 1 1 1 

Test 73

Group: 4

Verdict: ACCEPTED

input
1110011111

correct output
2
2 1 

user output
3
1 1 1 

Test 74

Group: 4

Verdict:

input
1011000101

correct output
4
2 1 1 1 

user output
101101
1001
11
4
3 2 1 1 

Test 75

Group: 4

Verdict:

input
1110110010

correct output
4
1 2 1 1 

user output
110010
110
QAQ

Test 76

Group: 4

Verdict:

input
110011001100110011001100110011...

correct output
QAQ

user output
(empty)

Test 77

Group: 4

Verdict:

input
110011001100110011001100110011...

correct output
QAQ

user output
(empty)

Test 78

Group: 4

Verdict:

input
110011001100110011001100110011...

correct output
30001
1 20000 20000 20000 20000 2000...

user output
(empty)

Test 79

Group: 4

Verdict:

input
010101010101010101010101010101...

correct output
49998
2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Test 80

Group: 4

Verdict:

input
111000110000011000001101010010...

correct output
25011
1 12471 12470 12469 12468 1246...

user output
(empty)