CSES - Datatähti 2016 alku - Results
Submission details
Task:Bittipeli
Sender:@.+-_
Submission time:2015-10-05 18:16:43 +0300
Language:Java
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
#40
Test results
testverdicttimegroup
#10.19 s1details
#20.18 s1details
#30.17 s1details
#40.23 s1details
#50.17 s1details
#60.18 s1details
#70.17 s1details
#80.17 s1details
#90.18 s1details
#100.17 s1details
#110.19 s1details
#120.19 s1details
#130.17 s1details
#140.18 s1details
#150.17 s1details
#160.17 s1details
#170.17 s1details
#180.17 s1details
#190.17 s1details
#200.18 s1details
#210.18 s2details
#220.19 s2details
#230.17 s2details
#240.16 s2details
#250.17 s2details
#260.19 s2details
#270.17 s2details
#280.17 s2details
#290.17 s2details
#300.17 s2details
#310.18 s2details
#320.18 s2details
#330.18 s2details
#340.17 s2details
#350.17 s2details
#360.20 s2details
#370.19 s2details
#380.20 s2details
#390.24 s2details
#400.18 s2details
#410.18 s3details
#420.19 s3details
#430.18 s3details
#440.17 s3details
#450.17 s3details
#460.17 s3details
#470.17 s3details
#480.20 s3details
#490.17 s3details
#500.17 s3details
#510.18 s3details
#520.17 s3details
#530.18 s3details
#540.18 s3details
#550.18 s3details
#56--3details
#57--3details
#580.91 s3details
#59--3details
#600.87 s3details
#610.21 s4details
#620.18 s4details
#630.17 s4details
#640.17 s4details
#650.17 s4details
#660.17 s4details
#670.17 s4details
#680.17 s4details
#690.17 s4details
#700.18 s4details
#710.17 s4details
#720.19 s4details
#730.18 s4details
#740.17 s4details
#750.18 s4details
#76--4details
#77--4details
#78--4details
#79--4details
#800.00 s4details

Code

import java.util.ArrayList;
import java.util.List;

public class Bites3 {
	public static List<Character> doItPleb(char[] input) {
		List<Character> output = new ArrayList<Character>();
		char dominant = '-';
		
		for(int i = 0; i < input.length-1; i++) {
			if(input[i] != dominant) {
				if(input[i+1] == input[i]) output.add('1');
				else output.add('0');
				
				dominant = input[i];
			}
		}
		
		if(input[input.length-1] != input[input.length-2])
			output.add('0');
		
		return output;
	}
	
	public static void main(String[] args) {
		IO oi = new IO();
		char[] input = oi.next().toCharArray();
		List<Character> bits = doItPleb(input);
		
		System.out.println("Let's do it: " + (new StringBuilder().append(bits).toString()));
		
		int operationCount = 0;
		String operations = "";
		
		boolean oiodone = false, qaq = false;
		String tmpstr;
		int tmpint;
		
		int halfway;
		
		bigloop:
		while(bits.size() > 3) {
			oio:
			while(!oiodone) {
				halfway = (int) Math.floor(bits.size() / 2);
				
				for(int i = 0; i < halfway-1; i++) {
					if(bits.get(halfway+i-1) == '0' && bits.get(halfway+i) == '1' && bits.get(halfway+i+1) == '0') {
						bits.set(halfway+i, '1');
						bits.remove(halfway+i-1);
						bits.remove(halfway+i+1);
						
						tmpint = 0;
						for(int j = 0; j < halfway+i; j++)
							if(bits.get(j) == '1')
								tmpint++;
						operationCount++;
						operations += tmpint + " ";
						
						System.out.println("(-010) Now: " + (new StringBuilder().append(bits).toString()));
						continue oio;
					} else if(i > 0 && bits.get(halfway-i+1) == '0' && bits.get(halfway-i) == '1' && bits.get(halfway-i-1) == '0') {
						bits.set(halfway-i, '1');
						bits.remove(halfway-i+1);
						bits.remove(halfway-i-1);
						
						tmpint = 0;
						for(int j = 0; j < halfway-i; j++)
							if(bits.get(j) == '1')
								tmpint++;
						operationCount++;
						operations += tmpint + " ";
						
						System.out.println("(-010) Now: " + (new StringBuilder().append(bits).toString()));
						continue oio;
					}
				}
				
				oiodone = true;
				System.out.println("010 phase done: " + (new StringBuilder().append(bits).toString()));
			}
			
			if(bits.size() <= 3) break bigloop;
			
			halfway = (int) Math.floor(bits.size() / 2);
			qaq = true;
			
			iio:
			for(int i = 0; i < halfway; i++) {
				if(halfway+i+1 < bits.size()) {
					tmpstr = "" + bits.get(halfway+i-1) + bits.get(halfway+i) + bits.get(halfway+i+1);
					System.out.println("tmpstr " + tmpstr);
					
					if(tmpstr.equals("010") || tmpstr.equals("110") || tmpstr.equals("011")) {
						tmpint = bits.get(halfway+i-1) == '1' ? 1 : 0;
						
						bits.set(halfway+i-1, '1');
						bits.remove(halfway+i);
						bits.remove(halfway+i);
						
						for(int j = 0; j < halfway+i; j++)
							if(bits.get(j) == '1')
								tmpint++;
						operationCount++;
						operations += tmpint + " ";
						
						qaq = false;
						System.out.println("(-" + tmpstr + ") Now: " + (new StringBuilder().append(bits).toString()));
						
						halfway = (int) Math.floor(bits.size() / 2);
						continue iio;
					}
				}
				
				System.out.println("i " + i);
				if(i > 0) {
					tmpstr = "" + bits.get(halfway-i+1) + bits.get(halfway-i) + bits.get(halfway-i-1);
					System.out.println("tmpstr2 " + tmpstr);
					
					if(tmpstr.equals("010") || tmpstr.equals("110") || tmpstr.equals("011")) {
						tmpint = bits.get(halfway-i-1) == '1' ? 1 : 0;
						
						bits.set(halfway-i-1, '1');
						bits.remove(halfway-i);
						bits.remove(halfway-i);
						
						for(int j = 0; j < halfway-i; j++)
							if(bits.get(j) == '1')
								tmpint++;
						operationCount++;
						operations += tmpint + " ";
						
						qaq = false;
						System.out.println("(-" + tmpstr + ") Now: " + (new StringBuilder().append(bits).toString()));
						continue iio;
					}
				}
			}
			
			boolean win = true;
			for(int i = 0; i < bits.size(); i++) {
				if(bits.get(i) == '0') win = false;
				else {
					operationCount++;
					operations += "1 ";
				}
			}
			
			if(win) {
				oi.println(operationCount);
				oi.println(operations);
				oi.close();
				return;
			} else if(qaq) {
				oi.println("QAQ");
				oi.close();
				return;
			}
		}
		
		System.out.println("Finishing up: " + (new StringBuilder().append(bits).toString()));
		
		if(bits.size() == 1) {
			if(bits.get(0) == '0') {
				oi.println("QAQ");
				oi.close();
				return;
			}
			
			operationCount++;
			operations += "1";
		} else if(bits.size() == 2) {
			if(bits.get(0) != bits.get(1) || bits.get(0) == '0') {
				oi.println("QAQ");
				oi.close();
				return;
			}
			
			operations += "1 1";
			operationCount += 2;
		} else if(bits.size() == 3) {
			if(bits.get(1) == '0') {
				oi.println("QAQ");
				oi.close();
				return;
			}
			
			if(bits.get(0) == '1') operations += "2 1";
			else operations += "1 1";
			
			operationCount += 2;
		}
		
		oi.println(operationCount);
		oi.println(operations);
		oi.close();
	}
}

Test details

Test 1

Group: 1

Verdict:

input
1011001010

correct output
QAQ

user output
Let's do it: [0, 0, 1, 1, 0, 0...

Test 2

Group: 1

Verdict:

input
0000001001

correct output
3
1 1 1 

user output
Let's do it: [1, 0, 1, 0]

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index: 3, Size: 3
	at java.util.ArrayList.rangeCheck(ArrayList.java:653)
	at java.util.ArrayList.remove(ArrayList.java:492)
	at Bites3.main(Bites3.java:50)

Test 3

Group: 1

Verdict:

input
0111011100

correct output
3
2 1 1 

user output
Let's do it: [0, 1, 0, 1, 1]
010 phase done: [0, 1, 0, 1, 1...

Test 4

Group: 1

Verdict:

input
0100100100

correct output
4
2 1 1 1 

user output
Let's do it: [0, 0, 1, 0, 1, 0...

Test 5

Group: 1

Verdict:

input
1110010110

correct output
4
2 1 1 1 

user output
Let's do it: [1, 1, 0, 0, 1, 0...

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index: 5, Size: 5
	at java.util.ArrayList.rangeCheck(ArrayList.java:653)
	at java.util.ArrayList.remove(ArrayList.java:492)
	at Bites3.main(Bites3.java:50)

Test 6

Group: 1

Verdict:

input
1111110110

correct output
3
1 1 1 

user output
Let's do it: [1, 0, 1, 0]

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index: 3, Size: 3
	at java.util.ArrayList.rangeCheck(ArrayList.java:653)
	at java.util.ArrayList.remove(ArrayList.java:492)
	at Bites3.main(Bites3.java:50)

Test 7

Group: 1

Verdict:

input
0011110001

correct output
3
1 2 1 

user output
Let's do it: [1, 1, 1, 0]
010 phase done: [1, 1, 1, 0]
tmpstr 110
(-110) Now: [1, 1]
3
...

Test 8

Group: 1

Verdict:

input
0111111000

correct output
2
1 1 

user output
Let's do it: [0, 1, 1]
Finishing up: [0, 1, 1]
2
1 1

Test 9

Group: 1

Verdict:

input
1111111100

correct output
2
1 1 

user output
Let's do it: [1, 1]
Finishing up: [1, 1]
2
1 1

Test 10

Group: 1

Verdict:

input
1000010011

correct output
3
2 1 1 

user output
Let's do it: [0, 1, 0, 1, 1]
010 phase done: [0, 1, 0, 1, 1...

Test 11

Group: 1

Verdict:

input
1101110000

correct output
3
1 1 1 

user output
Let's do it: [1, 0, 1, 1]
010 phase done: [1, 0, 1, 1]
tmpstr 011
(-011) Now: [1, 1]
3
...

Test 12

Group: 1

Verdict:

input
1101101100

correct output
4
1 2 1 1 

user output
Let's do it: [1, 0, 1, 0, 1, 1...

Test 13

Group: 1

Verdict:

input
0100111110

correct output
3
1 1 1 

user output
Let's do it: [0, 0, 1, 1, 0]
010 phase done: [0, 0, 1, 1, 0...

Test 14

Group: 1

Verdict:

input
1101001011

correct output
4
2 2 2 1 

user output
Let's do it: [1, 0, 0, 1, 0, 0...

Test 15

Group: 1

Verdict:

input
1110110010

correct output
4
1 2 1 1 

user output
Let's do it: [1, 0, 1, 1, 0, 0...

Test 16

Group: 1

Verdict:

input
0011011100

correct output
3
3 2 1 

user output
Let's do it: [1, 1, 0, 1, 1]
010 phase done: [1, 1, 0, 1, 1...

Test 17

Group: 1

Verdict:

input
1100101011

correct output
QAQ

user output
Let's do it: [1, 1, 0, 0, 0, 0...

Test 18

Group: 1

Verdict:

input
1101100111

correct output
3
2 2 1 

user output
Let's do it: [1, 0, 1, 1, 1]
010 phase done: [1, 0, 1, 1, 1...

Test 19

Group: 1

Verdict:

input
0110000100

correct output
3
2 1 1 

user output
Let's do it: [0, 1, 1, 0, 1]
010 phase done: [0, 1, 1, 0, 1...

Test 20

Group: 1

Verdict:

input
0000101000

correct output
QAQ

user output
Let's do it: [1, 0, 0, 0, 1]
010 phase done: [1, 0, 0, 0, 1...

Test 21

Group: 2

Verdict:

input
1110010100

correct output
QAQ

user output
Let's do it: [1, 1, 0, 0, 0, 1...

Test 22

Group: 2

Verdict:

input
1110010000

correct output
3
2 1 1 

user output
Let's do it: [1, 1, 0, 1]
010 phase done: [1, 1, 0, 1]
tmpstr 101
i 0
i 1
...

Test 23

Group: 2

Verdict:

input
1001101100

correct output
4
1 1 1 1 

user output
Let's do it: [0, 1, 1, 0, 1, 1...

Test 24

Group: 2

Verdict:

input
0000000111

correct output
2
1 1 

user output
Let's do it: [1, 1]
Finishing up: [1, 1]
2
1 1

Test 25

Group: 2

Verdict:

input
0011111110

correct output
2
2 1 

user output
Let's do it: [1, 1, 0]
Finishing up: [1, 1, 0]
2
2 1

Test 26

Group: 2

Verdict:

input
1100101100

correct output
4
2 1 1 1 

user output
Let's do it: [1, 1, 0, 0, 1, 1...

Test 27

Group: 2

Verdict:

input
0111101110

correct output
3
2 1 1 

user output
Let's do it: [0, 1, 0, 1, 0]
010 phase done: [0, 1, 0, 1, 0...

Test 28

Group: 2

Verdict:

input
0000011011

correct output
3
2 1 1 

user output
Let's do it: [1, 1, 0, 1]
010 phase done: [1, 1, 0, 1]
tmpstr 101
i 0
i 1
...

Test 29

Group: 2

Verdict:

input
1110011101

correct output
3
3 2 1 

user output
Let's do it: [1, 1, 1, 0, 0]
010 phase done: [1, 1, 1, 0, 0...

Test 30

Group: 2

Verdict:

input
0001011011

correct output
4
1 1 1 1 

user output
Let's do it: [1, 0, 0, 1, 0, 1...

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index: 3, Size: 3
	at java.util.ArrayList.rangeCheck(ArrayList.java:653)
	at java.util.ArrayList.remove(ArrayList.java:492)
	at Bites3.main(Bites3.java:50)

Test 31

Group: 2

Verdict:

input
0010110011

correct output
4
1 1 1 1 

user output
Let's do it: [1, 0, 0, 1, 1, 1...

Test 32

Group: 2

Verdict:

input
0011100000

correct output
2
2 1 

user output
Let's do it: [1, 1, 1]
Finishing up: [1, 1, 1]
2
2 1

Test 33

Group: 2

Verdict:

input
1110100110

correct output
4
1 1 1 1 

user output
Let's do it: [1, 0, 0, 1, 1, 0...

Test 34

Group: 2

Verdict:

input
0110110111

correct output
4
2 1 1 1 

user output
Let's do it: [0, 1, 0, 1, 0, 1...

Test 35

Group: 2

Verdict:

input
1110110010

correct output
4
1 2 1 1 

user output
Let's do it: [1, 0, 1, 1, 0, 0...

Test 36

Group: 2

Verdict:

input
110011001100110011001010101010...

correct output
QAQ

user output
Let's do it: [1, 1, 1, 1, 1, 1...

Test 37

Group: 2

Verdict:

input
110011001100110011001100101010...

correct output
QAQ

user output
Let's do it: [1, 1, 1, 1, 1, 1...

Test 38

Group: 2

Verdict:

input
110011001100110011001100110011...

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

user output
Let's do it: [1, 1, 1, 1, 1, 1...

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
Let's do it: [0, 0, 0, 0, 0, 0...

Test 40

Group: 2

Verdict:

input
011010000011111011110000110011...

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

user output
Let's do it: [0, 1, 0, 0, 1, 1...

Test 41

Group: 3

Verdict:

input
0010101000

correct output
QAQ

user output
Let's do it: [1, 0, 0, 0, 0, 0...

Test 42

Group: 3

Verdict:

input
0100010110

correct output
4
2 1 1 1 

user output
Let's do it: [0, 0, 1, 0, 0, 1...

Test 43

Group: 3

Verdict:

input
0100110110

correct output
4
2 1 1 1 

user output
Let's do it: [0, 0, 1, 1, 0, 1...

Test 44

Group: 3

Verdict:

input
1110000001

correct output
2
2 1 

user output
Let's do it: [1, 1, 0]
Finishing up: [1, 1, 0]
2
2 1

Test 45

Group: 3

Verdict:

input
0001001110

correct output
3
2 2 1 

user output
Let's do it: [1, 0, 1, 1, 0]
010 phase done: [1, 0, 1, 1, 0...

Test 46

Group: 3

Verdict:

input
0011100011

correct output
3
1 2 1 

user output
Let's do it: [1, 1, 1, 1]
010 phase done: [1, 1, 1, 1]
tmpstr 111
i 0
i 1
...

Test 47

Group: 3

Verdict:

input
0100111100

correct output
3
1 1 1 

user output
Let's do it: [0, 0, 1, 1, 1]
010 phase done: [0, 0, 1, 1, 1...

Test 48

Group: 3

Verdict:

input
0001001000

correct output
3
2 2 1 

user output
Let's do it: [1, 0, 1, 0, 1]
(-010) Now: [1, 1, 0]
010 phase done: [1, 1, 0]
Finishing up: [1, 1, 0]
3
...

Test 49

Group: 3

Verdict:

input
0100100010

correct output
4
2 1 1 1 

user output
Let's do it: [0, 0, 1, 0, 1, 0...

Test 50

Group: 3

Verdict:

input
1100101110

correct output
4
2 1 1 1 

user output
Let's do it: [1, 1, 0, 0, 1, 0...

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index: 5, Size: 5
	at java.util.ArrayList.rangeCheck(ArrayList.java:653)
	at java.util.ArrayList.remove(ArrayList.java:492)
	at Bites3.main(Bites3.java:50)

Test 51

Group: 3

Verdict:

input
1000111011

correct output
3
2 1 1 

user output
Let's do it: [0, 1, 1, 0, 1]
010 phase done: [0, 1, 1, 0, 1...

Test 52

Group: 3

Verdict:

input
1000111111

correct output
2
1 1 

user output
Let's do it: [0, 1, 1]
Finishing up: [0, 1, 1]
2
1 1

Test 53

Group: 3

Verdict:

input
0110011100

correct output
3
2 1 1 

user output
Let's do it: [0, 1, 1, 1, 1]
010 phase done: [0, 1, 1, 1, 1...

Test 54

Group: 3

Verdict:

input
0001000110

correct output
3
2 2 1 

user output
Let's do it: [1, 0, 1, 1, 0]
010 phase done: [1, 0, 1, 1, 0...

Test 55

Group: 3

Verdict:

input
1110110010

correct output
4
1 2 1 1 

user output
Let's do it: [1, 0, 1, 1, 0, 0...

Test 56

Group: 3

Verdict:

input
110011001100110011001100110011...

correct output
QAQ

user output
(empty)

Test 57

Group: 3

Verdict:

input
110011001100110011001100110011...

correct output
QAQ

user output
(empty)

Test 58

Group: 3

Verdict:

input
110011001100110011001100110011...

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

user output
Let's do it: [1, 1, 1, 1, 1, 1...

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
(empty)

Test 60

Group: 3

Verdict:

input
011100011001011111111000010110...

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

user output
Let's do it: [0, 1, 1, 1, 1, 0...

Test 61

Group: 4

Verdict:

input
1110101110

correct output
QAQ

user output
Let's do it: [1, 0, 0, 0, 1, 0...

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index: 5, Size: 5
	at java.util.ArrayList.rangeCheck(ArrayList.java:653)
	at java.util.ArrayList.remove(ArrayList.java:492)
	at Bites3.main(Bites3.java:50)

Test 62

Group: 4

Verdict:

input
0111001011

correct output
4
2 1 1 1 

user output
Let's do it: [0, 1, 1, 0, 0, 1...

Test 63

Group: 4

Verdict:

input
1101111101

correct output
3
2 2 1 

user output
Let's do it: [1, 0, 1, 0, 0]
(-010) Now: [1, 1, 0]
010 phase done: [1, 1, 0]
Finishing up: [1, 1, 0]
3
...

Test 64

Group: 4

Verdict:

input
1001110001

correct output
3
2 1 1 

user output
Let's do it: [0, 1, 1, 1, 0]
010 phase done: [0, 1, 1, 1, 0...

Test 65

Group: 4

Verdict:

input
1000000011

correct output
2
1 1 

user output
Let's do it: [0, 1, 1]
Finishing up: [0, 1, 1]
2
1 1

Test 66

Group: 4

Verdict:

input
0100010111

correct output
4
1 1 1 1 

user output
Let's do it: [0, 0, 1, 0, 0, 1...

Test 67

Group: 4

Verdict:

input
0100111010

correct output
4
2 1 1 1 

user output
Let's do it: [0, 0, 1, 1, 0, 0...

Test 68

Group: 4

Verdict:

input
0010111101

correct output
4
1 1 1 1 

user output
Let's do it: [1, 0, 0, 1, 0, 0...

Error:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index: 3, Size: 3
	at java.util.ArrayList.rangeCheck(ArrayList.java:653)
	at java.util.ArrayList.remove(ArrayList.java:492)
	at Bites3.main(Bites3.java:50)

Test 69

Group: 4

Verdict:

input
0011111000

correct output
2
2 1 

user output
Let's do it: [1, 1, 1]
Finishing up: [1, 1, 1]
2
2 1

Test 70

Group: 4

Verdict:

input
1101001101

correct output
4
2 2 2 1 

user output
Let's do it: [1, 0, 0, 1, 1, 0...

Test 71

Group: 4

Verdict:

input
0110111000

correct output
3
2 1 1 

user output
Let's do it: [0, 1, 0, 1, 1]
010 phase done: [0, 1, 0, 1, 1...

Test 72

Group: 4

Verdict:

input
1100110111

correct output
3
3 2 1 

user output
Let's do it: [1, 1, 1, 0, 1]
010 phase done: [1, 1, 1, 0, 1...

Test 73

Group: 4

Verdict:

input
1110011111

correct output
2
2 1 

user output
Let's do it: [1, 1, 1]
Finishing up: [1, 1, 1]
2
2 1

Test 74

Group: 4

Verdict:

input
1011000101

correct output
4
2 1 1 1 

user output
Let's do it: [0, 0, 1, 1, 0, 0...

Test 75

Group: 4

Verdict:

input
1110110010

correct output
4
1 2 1 1 

user output
Let's do it: [1, 0, 1, 1, 0, 0...

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)