Friday, May 24, 2013

Codeforces Round #180 (Div. 2) C Parity Game

//Codeforces Round #180 (Div. 2) C Parity Game

import java.io.*;
import java.io.ObjectInputStream.GetField;
import java.math.*;
import java.text.*;
import java.util.*;

//Codeforces
public class MainCodeforces1 {
    private static MyScanner in;
    private static PrintStream out;
    private static boolean LOCAL_TEST = false;

    private static void solve() throws IOException
    {
        char[] a = in.nextString().toCharArray();
        char[] b = in.nextString().toCharArray();
        int num1a = 0;
        int num1b = 0;
        for (int i = 0; i < a.length; i++) {
            if (a[i] == '1') {
                num1a++;
            }
        }
        int maxNum1a = (num1a % 2 == 0) ? num1a : num1a + 1;
        for (int i = 0; i < b.length; i++) {
            if (b[i] == '1')
                num1b++;
        }

        boolean possible;
        if (num1a == 0)
            if (num1b > 0)
                possible = false;
            else
                possible = true;
        else if (num1b <= 2) {
            possible = true;
        }
        else {
            if (maxNum1a < num1b)
                possible = false;
            else {
                possible = true;
            }
        }

        out.println(possible ? "YES" : "NO");
    }

    public static void main(String[] args) throws IOException {
        // helpers for input/output
        out = System.out;
        try {
            String cname = System.getenv("COMPUTERNAME");
            LOCAL_TEST = (cname.equals("ALPHA530"));
        } catch (Exception e) {
        }
        if (LOCAL_TEST) {
            in = new MyScanner("E:\\zin.txt");
        }
        else {
            boolean usingFileForIO = false;
            if (usingFileForIO) {
                // using input.txt and output.txt as I/O
                in = new MyScanner("input.txt");
                out = new PrintStream("output.txt");
            }
            else {
                in = new MyScanner();
                out = System.out;
            }
        }

        solve();
    }

    // =====================================
    static class MyScanner {
        Scanner inp = null;

        public MyScanner() throws IOException
        {
            inp = new Scanner(System.in);
        }

        public MyScanner(String inputFile) throws IOException {
            inp = new Scanner(new FileInputStream(inputFile));
        }

        public int nextInt() throws IOException {
            return inp.nextInt();
        }

        public long nextLong() throws IOException {
            return inp.nextLong();
        }

        public double nextDouble() throws IOException {
            return inp.nextDouble();
        }

        public String nextString() throws IOException {
            return inp.next();
        }

    }

}

No comments:

Post a Comment