CSES - Datatähti 2016 alku - Results
Submission details
Task:Bittipeli
Sender:Oispa Kaljaa
Submission time:2015-10-05 18:40:04 +0300
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
#40
Test results
testverdicttimegroup
#10.06 s1details
#20.06 s1details
#30.06 s1details
#40.05 s1details
#50.05 s1details
#60.05 s1details
#70.06 s1details
#80.05 s1details
#90.06 s1details
#100.05 s1details
#110.06 s1details
#120.05 s1details
#130.05 s1details
#140.06 s1details
#150.06 s1details
#160.05 s1details
#170.05 s1details
#180.06 s1details
#190.05 s1details
#200.05 s1details
#210.05 s2details
#220.05 s2details
#230.05 s2details
#240.05 s2details
#250.05 s2details
#260.05 s2details
#270.05 s2details
#280.06 s2details
#290.06 s2details
#300.05 s2details
#310.05 s2details
#320.06 s2details
#330.05 s2details
#340.05 s2details
#350.05 s2details
#360.05 s2details
#370.05 s2details
#380.05 s2details
#390.05 s2details
#400.05 s2details
#410.05 s3details
#420.05 s3details
#430.05 s3details
#440.05 s3details
#450.06 s3details
#460.06 s3details
#470.05 s3details
#480.05 s3details
#490.05 s3details
#500.05 s3details
#510.05 s3details
#520.06 s3details
#530.05 s3details
#540.06 s3details
#550.05 s3details
#560.08 s3details
#570.06 s3details
#580.07 s3details
#590.10 s3details
#600.08 s3details
#610.07 s4details
#620.06 s4details
#630.06 s4details
#640.05 s4details
#650.05 s4details
#660.05 s4details
#670.05 s4details
#680.06 s4details
#690.05 s4details
#700.05 s4details
#710.04 s4details
#720.05 s4details
#730.06 s4details
#740.06 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:30:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for(int i = 0; i < s.size(); i++)
                   ^
input/code.cpp:89:15: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
        if(has && i == 0 || i+le == n)
               ^
input/code.cpp:99:15: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
        if(has && i == 0 || i+le == n)
               ^
input/code.cpp:143:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(int i = 0; i < ans.size(); i++)
                    ^

Code

#include <bits/stdc++.h>

#define i64 long long
#define u64 unsigned long long
#define i32 int
#define u32 unsigned int

#define pii pair<int, int>
#define pll pair<long long, long long>

#define defmod 1000000007
using namespace std;

//toimii toisella, toisella ei, korjaa
//suosii sita varia jota poistettu vahemman

//laita tama valinta bruteen, nopeuttaa??
//poista keskimmäinen
//poista pienin?
int main(){
	cin.sync_with_stdio(0);
	cin.tie(0);
	
	string s; cin >> s;
	
	string rev = s;
	reverse(rev.begin(), rev.end());
	vector<int> ans;
	int c[2] = {0};
	for(int i = 0; i < s.size(); i++)
		c[s[i] == '1']++;
	
	while(s.size() > 0){
		cout << s  << " " << c[0] << " " << c[1]<< endl;
		int n = s.size();
		int si = -1, sle = -1, sre = -1;
		bool has = false;
		int num = 1;
		bool shas = false;
		
		for(int i = 0; i < n;){
			int le = 1;
			while(i+le < n && s[i+le] == s[i])
				le++;
			bool hasl = false, hasr = false;
			
			
			if(i == 1)
				hasl = true;
			else if(i > 1 && s[i-2] == s[i])
				hasl = true;

			if(i+le == n-1)
				hasr = true;
			else if(i+le+1 < n && s[i+le+1] == s[i])
				hasr = true;

			if(le > 1){
				if(shas){
					num++;
					goto ohi;
				}
				if(hasl && hasr){
					if(s[i] == '0'){
						if(c[0]-le != 1){
							si = i;
							sle = le;
							sre = num;
							has = true;
							if(i != 1 && i+le != n-1)
								shas = true;
						}
					}
					else{
						if(c[1]-le != 1){
							si = i;
							sle = le;
							sre = num;
							has = true;

							if(i != 1 && i+le != n-1)
								shas = true;
						}
					}
				}
				else if(hasl || hasr){
					if(s[i] == '0'){
						if(c[0]-le != 1){
							if(has && i == 0 || i+le == n)
								goto ohi;
							si = i;
							sle = le;
							sre = num;
							has = true;
						}
					}
					else{
						if(c[1]-le != 1){
							if(has && i == 0 || i+le == n)
								goto ohi;
							si = i;
							sle = le;
							sre = num;
							has = true;
						}
					}
				}
				else if(!has){
					if(s[i] == '0'){
						if(c[0]-le != 1){
							si = i;
							sle = le;
							sre = num;
							
						}
					}
					else{
						if(c[1]-le != 1){
							si = i;
							sle = le;
							sre = num;
							
						}
					}
				}
				num++;
			}
			ohi:
			i+=le;
		}
		if(sre == -1)
			break;
		ans.push_back(sre);
		//cout << "poistetaan "<< s[si] << " last " << last << endl;
		c[s[si] == '1']-=sle;
		//cout << si << " " << sle << " " << sre << endl;
		s = s.substr(0, si)+s.substr(si+sle, s.size()-(si+sle));


	}
	if(s.size() == 0){
		cout << ans.size() << endl;
		for(int i = 0; i < ans.size(); i++)
			cout << ans[i] << " ";
		cout << endl;
	}
	else{
		cout << "QAQ" << endl;
	}
	return 0;
}

Test details

Test 1

Group: 1

Verdict:

input
1011001010

correct output
QAQ

user output
1011001010 5 5
10111010 3 5
10010 3 2
QAQ

Test 2

Group: 1

Verdict:

input
0000001001

correct output
3
1 1 1 

user output
0000001001 8 2
00000011 6 2
000000 6 0
3
2 2 1 

Test 3

Group: 1

Verdict:

input
0111011100

correct output
3
2 1 1 

user output
0111011100 4 6
0111000 4 3
0000 4 0
3
2 1 1 

Test 4

Group: 1

Verdict:

input
0100100100

correct output
4
2 1 1 1 

user output
0100100100 7 3
01100100 5 3
011100 3 3
000 3 0
4
...

Test 5

Group: 1

Verdict:

input
1110010110

correct output
4
2 1 1 1 

user output
1110010110 4 6
11100100 4 4
111100 2 4
1111 0 4
4
...

Test 6

Group: 1

Verdict:

input
1111110110

correct output
3
1 1 1 

user output
1111110110 2 8
11111100 2 6
111111 0 6
3
2 2 1 

Test 7

Group: 1

Verdict:

input
0011110001

correct output
3
1 2 1 

user output
0011110001 5 5
0011111 2 5
00 2 0
3
3 2 1 

Test 8

Group: 1

Verdict:

input
0111111000

correct output
2
1 1 

user output
0111111000 4 6
0000 4 0
2
1 1 

Test 9

Group: 1

Verdict:

input
1111111100

correct output
2
1 1 

user output
1111111100 2 8
11111111 0 8
2
2 1 

Test 10

Group: 1

Verdict:

input
1000010011

correct output
3
2 1 1 

user output
1000010011 6 4
10000111 4 4
1111 0 4
3
2 1 1 

Test 11

Group: 1

Verdict:

input
1101110000

correct output
3
1 1 1 

user output
1101110000 5 5
1100000 5 2
11 0 2
3
2 2 1 

Test 12

Group: 1

Verdict:

input
1101101100

correct output
4
1 2 1 1 

user output
1101101100 4 6
11001100 4 4
110011 2 4
1100 2 2
11 0 2
...

Test 13

Group: 1

Verdict:

input
0100111110

correct output
3
1 1 1 

user output
0100111110 4 6
01111110 2 6
00 2 0
3
1 1 1 

Test 14

Group: 1

Verdict:

input
1101001011

correct output
4
2 2 2 1 

user output
1101001011 4 6
11011011 2 6
110011 2 4
1100 2 2
11 0 2
...

Test 15

Group: 1

Verdict:

input
1110110010

correct output
4
1 2 1 1 

user output
1110110010 4 6
11101110 2 6
11100 2 3
111 0 3
4
...

Test 16

Group: 1

Verdict:

input
0011011100

correct output
3
3 2 1 

user output
0011011100 5 5
0011000 5 2
0011 2 2
00 2 0
4
...

Test 17

Group: 1

Verdict:

input
1100101011

correct output
QAQ

user output
1100101011 4 6
11101011 2 6
01011 2 3
QAQ

Test 18

Group: 1

Verdict:

input
1101100111

correct output
3
2 2 1 

user output
1101100111 3 7
11000111 3 5
11000 3 2
11 0 2
4
...

Test 19

Group: 1

Verdict:

input
0110000100

correct output
3
2 1 1 

user output
0110000100 7 3
011100 3 3
000 3 0
3
2 1 1 

Test 20

Group: 1

Verdict:

input
0000101000

correct output
QAQ

user output
0000101000 8 2
101000 4 2
QAQ

Test 21

Group: 2

Verdict:

input
1110010100

correct output
QAQ

user output
1110010100 5 5
11110100 3 5
QAQ

Test 22

Group: 2

Verdict:

input
1110010000

correct output
3
2 1 1 

user output
1110010000 6 4
11110000 4 4
1111 0 4
3
2 2 1 

Test 23

Group: 2

Verdict:

input
1001101100

correct output
4
1 1 1 1 

user output
1001101100 5 5
10011000 5 3
111000 3 3
111 0 3
4
...

Test 24

Group: 2

Verdict:

input
0000000111

correct output
2
1 1 

user output
0000000111 7 3
0000000 7 0
2
2 1 

Test 25

Group: 2

Verdict:

input
0011111110

correct output
2
2 1 

user output
0011111110 3 7
000 3 0
2
2 1 

Test 26

Group: 2

Verdict:

input
1100101100

correct output
4
2 1 1 1 

user output
1100101100 5 5
11001000 5 3
111000 3 3
111 0 3
4
...

Test 27

Group: 2

Verdict:

input
0111101110

correct output
3
2 1 1 

user output
0111101110 3 7
0111100 3 4
000 3 0
3
2 1 1 

Test 28

Group: 2

Verdict:

input
0000011011

correct output
3
2 1 1 

user output
0000011011 6 4
00000011 6 2
000000 6 0
3
2 2 1 

Test 29

Group: 2

Verdict:

input
1110011101

correct output
3
3 2 1 

user output
1110011101 3 7
1110001 3 4
1111 0 4
3
3 2 1 

Test 30

Group: 2

Verdict:

input
0001011011

correct output
4
1 1 1 1 

user output
0001011011 5 5
00010011 5 3
000111 3 3
000 3 0
4
...

Test 31

Group: 2

Verdict:

input
0010110011

correct output
4
1 1 1 1 

user output
0010110011 5 5
00100011 5 3
00111 2 3
00 2 0
4
...

Test 32

Group: 2

Verdict:

input
0011100000

correct output
2
2 1 

user output
0011100000 7 3
00111 2 3
00 2 0
3
3 2 1 

Test 33

Group: 2

Verdict:

input
1110100110

correct output
4
1 1 1 1 

user output
1110100110 4 6
11101000 4 4
QAQ

Test 34

Group: 2

Verdict:

input
0110110111

correct output
4
2 1 1 1 

user output
0110110111 3 7
01100111 3 5
000111 3 3
000 3 0
4
...

Test 35

Group: 2

Verdict:

input
1110110010

correct output
4
1 2 1 1 

user output
1110110010 4 6
11101110 2 6
11100 2 3
111 0 3
4
...

Test 36

Group: 2

Verdict:

input
110011001100110011001010101010...

correct output
QAQ

user output
110011001100110011001010101010...

Test 37

Group: 2

Verdict:

input
110011001100110011001100101010...

correct output
QAQ

user output
110011001100110011001100101010...

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
011010000011111011110000110011...

Test 41

Group: 3

Verdict:

input
0010101000

correct output
QAQ

user output
0010101000 7 3
10101000 5 3
QAQ

Test 42

Group: 3

Verdict:

input
0100010110

correct output
4
2 1 1 1 

user output
0100010110 6 4
0110110 3 4
01100 3 2
000 3 0
4
...

Test 43

Group: 3

Verdict:

input
0100110110

correct output
4
2 1 1 1 

user output
0100110110 5 5
01001100 5 3
011100 3 3
000 3 0
4
...

Test 44

Group: 3

Verdict:

input
1110000001

correct output
2
2 1 

user output
1110000001 6 4
1111 0 4
2
2 1 

Test 45

Group: 3

Verdict:

input
0001001110

correct output
3
2 2 1 

user output
0001001110 6 4
00011110 4 4
0000 4 0
3
2 2 1 

Test 46

Group: 3

Verdict:

input
0011100011

correct output
3
1 2 1 

user output
0011100011 5 5
00111000 5 3
00111 2 3
00 2 0
4
...

Test 47

Group: 3

Verdict:

input
0100111100

correct output
3
1 1 1 

user output
0100111100 5 5
01111100 3 5
000 3 0
3
1 1 1 

Test 48

Group: 3

Verdict:

input
0001001000

correct output
3
2 2 1 

user output
0001001000 8 2
00011000 6 2
00011 3 2
000 3 0
4
...

Test 49

Group: 3

Verdict:

input
0100100010

correct output
4
2 1 1 1 

user output
0100100010 7 3
01100010 5 3
01110 2 3
00 2 0
4
...

Test 50

Group: 3

Verdict:

input
1100101110

correct output
4
2 1 1 1 

user output
1100101110 4 6
1100100 4 3
11100 2 3
111 0 3
4
...

Test 51

Group: 3

Verdict:

input
1000111011

correct output
3
2 1 1 

user output
1000111011 4 6
1000011 4 3
111 0 3
3
2 1 1 

Test 52

Group: 3

Verdict:

input
1000111111

correct output
2
1 1 

user output
1000111111 3 7
1111111 0 7
2
1 1 

Test 53

Group: 3

Verdict:

input
0110011100

correct output
3
2 1 1 

user output
0110011100 5 5
00011100 5 3
000111 3 3
000 3 0
4
...

Test 54

Group: 3

Verdict:

input
0001000110

correct output
3
2 2 1 

user output
0001000110 7 3
0001110 4 3
0000 4 0
3
2 2 1 

Test 55

Group: 3

Verdict:

input
1110110010

correct output
4
1 2 1 1 

user output
1110110010 4 6
11101110 2 6
11100 2 3
111 0 3
4
...

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
011100011001011111111000010110...

Test 61

Group: 4

Verdict:

input
1110101110

correct output
QAQ

user output
1110101110 3 7
1110100 3 4
QAQ

Test 62

Group: 4

Verdict:

input
0111001011

correct output
4
2 1 1 1 

user output
0111001011 4 6
01111011 2 6
0011 2 2
00 2 0
4
...

Test 63

Group: 4

Verdict:

input
1101111101

correct output
3
2 2 1 

user output
1101111101 2 8
11001 2 3
111 0 3
3
2 2 1 

Test 64

Group: 4

Verdict:

input
1001110001

correct output
3
2 1 1 

user output
1001110001 5 5
1001111 2 5
11111 0 5
3
3 1 1 

Test 65

Group: 4

Verdict:

input
1000000011

correct output
2
1 1 

user output
1000000011 7 3
111 0 3
2
1 1 

Test 66

Group: 4

Verdict:

input
0100010111

correct output
4
1 1 1 1 

user output
0100010111 5 5
0110111 2 5
00111 2 3
00 2 0
4
...

Test 67

Group: 4

Verdict:

input
0100111010

correct output
4
2 1 1 1 

user output
0100111010 5 5
0100010 5 2
0110 2 2
00 2 0
4
...

Test 68

Group: 4

Verdict:

input
0010111101

correct output
4
1 1 1 1 

user output
0010111101 4 6
001001 4 2
0011 2 2
00 2 0
4
...

Test 69

Group: 4

Verdict:

input
0011111000

correct output
2
2 1 

user output
0011111000 5 5
0011111 2 5
00 2 0
3
3 2 1 

Test 70

Group: 4

Verdict:

input
1101001101

correct output
4
2 2 2 1 

user output
1101001101 4 6
11010001 4 4
010001 4 2
QAQ

Test 71

Group: 4

Verdict:

input
0110111000

correct output
3
2 1 1 

user output
0110111000 5 5
0110000 5 2
00000 5 0
3
2 1 1 

Test 72

Group: 4

Verdict:

input
1100110111

correct output
3
3 2 1 

user output
1100110111 3 7
11000111 3 5
11000 3 2
11 0 2
4
...

Test 73

Group: 4

Verdict:

input
1110011111

correct output
2
2 1 

user output
1110011111 2 8
11100 2 3
111 0 3
3
3 2 1 

Test 74

Group: 4

Verdict:

input
1011000101

correct output
4
2 1 1 1 

user output
1011000101 5 5
1011101 2 5
1001 2 2
11 0 2
4
...

Test 75

Group: 4

Verdict:

input
1110110010

correct output
4
1 2 1 1 

user output
1110110010 4 6
11101110 2 6
11100 2 3
111 0 3
4
...

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)