Saturday, April 27, 2013

Codeforces Round #179 (Div. 2) A Yaroslav and Permutations

//Codeforces Round #179 (Div. 2) A Yaroslav and Permutations


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 void solve() throws IOException
    {
        int[] cnt = new int[1001];
        for (int i = 0; i < cnt.length; i++) {
            cnt[i] = 0;
        }
        int n = in.nextInt();
        for (int j = 0; j < n; j++) {
            int x = in.nextInt();
            cnt[x] += 1;
        }

        int maxSame = 0;
        for (int i = 0; i < cnt.length; i++) {
            maxSame = Math.max(cnt[i], maxSame);
        }
        if (maxSame <= (n + 1) / 2)
            out.println("YES");
        else
            out.println("NO");
    }

    public static void main(String[] args) throws IOException {
        // helpers for input/output
        boolean LOCAL_TEST = false;// change to false before submitting
        out = System.out;
        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