Submission #1178030


Source Code Expand

import java.io.*;
import java.util.*;
import java.util.Map.*;


public class Main {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n = sc.nextInt();
		int m = sc.nextInt();

		int[] x = new int[n];
		Map<Integer, Map<Integer, Integer>> hm = new TreeMap<>();
		for (int i = 0; i < n; i++) {
			x[i] = sc.nextInt();

			int mod = x[i] % m;

			if (!hm.containsKey(mod)) {
				hm.put(mod, new TreeMap<>());
			}

			Map<Integer, Integer> hmtmp = hm.get(mod);
			if (!hmtmp.containsKey(x[i])) {
				hmtmp.put(x[i], 0);
			}
			hmtmp.put(x[i], hmtmp.get(x[i]) + 1);
		}

		int ret = 0;
		int ret2 = 0;
		for (Entry<Integer, Map<Integer, Integer>> e : hm.entrySet()) {
			int mod = e.getKey();
			int mod2 = (m - mod) % m;
			Map<Integer, Integer> hmtmp = e.getValue();

			if (mod == mod2) {
				int tmp = 0;
				for (int ee : hmtmp.values()) {
					tmp += ee;
				}

				ret += tmp / 2;
//			} else if (mod < mod2) {
			} else {
				int ecnt = 0;
				int ocnt = 0;
				for (int ee : hmtmp.values()) {
					ecnt += ee;
					if (ee % 2 == 1) {
						ocnt++;
						ecnt--;
					}
				}

				if (!hm.containsKey(mod2)) {
					ret += ecnt / 2;
					continue;
				}

				Map<Integer, Integer> hmtmp2 = hm.get(mod2);

				int ecnt2 = 0;
				int ocnt2 = 0;
				for (int ee : hmtmp2.values()) {
					ecnt2 += ee;
					if (ee % 2 == 1) {
						ocnt2++;
						ecnt2--;
					}
				}

				if (ecnt + ocnt >= ecnt2 + ocnt2) {
					/*
					ret2 += ecnt2 + ocnt2;
					int tmp = Math.min(ocnt, ecnt2 + ocnt2);
					ocnt -= tmp;
					ecnt -= ecnt2 + ocnt2 - tmp;

					ret2 += ecnt / 2;
					*/
					int tmp = (ecnt + ocnt - (ecnt2 + ocnt2)) / 2;
					tmp = Math.min(tmp, ecnt / 2);

					ret2 += tmp + ecnt2 + ocnt2;
				} else {
					/*
					ret2 += ecnt + ocnt;
					int tmp = Math.min(ocnt2, ecnt + ocnt);
					ocnt2 -= tmp;
					ecnt2 -= ecnt + ocnt - tmp;

					ret2 += ecnt2 / 2;
					*/
					int tmp = (ecnt2 + ocnt2 - (ecnt + ocnt)) / 2;
					tmp = Math.min(tmp, ecnt2 / 2);

					ret2 += tmp + ecnt + ocnt;
				}
//			} else {
//				break;
			}

		}

		pr.println(ret + ret2 / 2);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	@SuppressWarnings("unused")
	private static class Scanner {
		BufferedReader br;

		Scanner (InputStream in) {
			br = new BufferedReader(new InputStreamReader(in));
		}

		private boolean isPrintable(int ch) {
			return ch >= '!' && ch <= '~';
		}

		private boolean isCRLF(int ch) {
			return ch == '\n' || ch == '\r' || ch == -1;
		}

		private int nextPrintable() {
			try {
				int ch;
				while (!isPrintable(ch = br.read())) {
					if (ch == -1) {
						throw new NoSuchElementException();
					}
				}

				return ch;
			} catch (IOException e) {
				throw new NoSuchElementException();
			}
		}

		String next() {
			try {
				int ch = nextPrintable();
				StringBuilder sb = new StringBuilder();
				do {
					sb.appendCodePoint(ch);
				} while (isPrintable(ch = br.read()));

				return sb.toString();
			} catch (IOException e) {
				throw new NoSuchElementException();
			}
		}

		int nextInt() {
			try {
				// parseInt from Integer.parseInt()
				boolean negative = false;
				int res = 0;
				int limit = -Integer.MAX_VALUE;
				int radix = 10;

				int fc = nextPrintable();
				if (fc < '0') {
					if (fc == '-') {
						negative = true;
						limit = Integer.MIN_VALUE;
					} else if (fc != '+') {
						throw new NumberFormatException();
					}
					fc = br.read();
				}
				int multmin = limit / radix;

				int ch = fc;
				do {
					int digit = ch - '0';
					if (digit < 0 || digit >= radix) {
						throw new NumberFormatException();
					}
					if (res < multmin) {
						throw new NumberFormatException();
					}
					res *= radix;
					if (res < limit + digit) {
						throw new NumberFormatException();
					}
					res -= digit;

				} while (isPrintable(ch = br.read()));

				return negative ? res : -res;
			} catch (IOException e) {
				throw new NoSuchElementException();
			}
		}

		long nextLong() {
			try {
				// parseLong from Long.parseLong()
				boolean negative = false;
				long res = 0;
				long limit = -Long.MAX_VALUE;
				int radix = 10;

				int fc = nextPrintable();
				if (fc < '0') {
					if (fc == '-') {
						negative = true;
						limit = Long.MIN_VALUE;
					} else if (fc != '+') {
						throw new NumberFormatException();
					}
					fc = br.read();
				}
				long multmin = limit / radix;

				int ch = fc;
				do {
					int digit = ch - '0';
					if (digit < 0 || digit >= radix) {
						throw new NumberFormatException();
					}
					if (res < multmin) {
						throw new NumberFormatException();
					}
					res *= radix;
					if (res < limit + digit) {
						throw new NumberFormatException();
					}
					res -= digit;

				} while (isPrintable(ch = br.read()));

				return negative ? res : -res;
			} catch (IOException e) {
				throw new NoSuchElementException();
			}
		}

		float nextFloat() {
			return Float.parseFloat(next());
		}

		double nextDouble() {
			return Double.parseDouble(next());
		}

		String nextLine() {
			try {
				int ch;
				while (isCRLF(ch = br.read())) {
					if (ch == -1) {
						throw new NoSuchElementException();
					}
				}
				StringBuilder sb = new StringBuilder();
				do {
					sb.appendCodePoint(ch);
				} while (!isCRLF(ch = br.read()));

				return sb.toString();
			} catch (IOException e) {
				throw new NoSuchElementException();
			}
		}

		void close() {
			try {
				br.close();
			} catch (IOException e) {
//				throw new NoSuchElementException();
			}
		}
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}

Submission Info

Submission Time
Task D - Pair Cards
User garnacha
Language Java8 (OpenJDK 1.8.0)
Score 700
Code Size 6115 Byte
Status AC
Exec Time 402 ms
Memory 60516 KB

Judge Result

Set Name sample all
Score / Max Score 0 / 0 700 / 700
Status
AC × 2
AC × 34
Set Name Test Cases
sample sample-01.txt, sample-02.txt
all sample-01.txt, sample-02.txt, 01-01.txt, 01-02.txt, 01-03.txt, 01-04.txt, 01-05.txt, 01-06.txt, 01-07.txt, 01-08.txt, 01-09.txt, 01-10.txt, 01-11.txt, 01-12.txt, 01-13.txt, 01-14.txt, 01-15.txt, 01-16.txt, 01-17.txt, 01-18.txt, 01-19.txt, 01-20.txt, 01-21.txt, 01-22.txt, 01-23.txt, 01-24.txt, 01-25.txt, 01-26.txt, 01-27.txt, 01-28.txt, 01-29.txt, 01-30.txt, sample-01.txt, sample-02.txt
Case Name Status Exec Time Memory
01-01.txt AC 85 ms 20948 KB
01-02.txt AC 249 ms 29212 KB
01-03.txt AC 242 ms 29832 KB
01-04.txt AC 253 ms 32308 KB
01-05.txt AC 256 ms 31476 KB
01-06.txt AC 245 ms 31888 KB
01-07.txt AC 247 ms 31592 KB
01-08.txt AC 258 ms 33168 KB
01-09.txt AC 253 ms 34020 KB
01-10.txt AC 304 ms 50344 KB
01-11.txt AC 304 ms 48988 KB
01-12.txt AC 161 ms 27200 KB
01-13.txt AC 161 ms 32484 KB
01-14.txt AC 260 ms 32948 KB
01-15.txt AC 256 ms 32504 KB
01-16.txt AC 280 ms 35244 KB
01-17.txt AC 272 ms 36952 KB
01-18.txt AC 262 ms 36512 KB
01-19.txt AC 288 ms 47588 KB
01-20.txt AC 402 ms 60516 KB
01-21.txt AC 204 ms 27408 KB
01-22.txt AC 212 ms 32140 KB
01-23.txt AC 196 ms 27960 KB
01-24.txt AC 212 ms 30940 KB
01-25.txt AC 214 ms 30392 KB
01-26.txt AC 199 ms 29092 KB
01-27.txt AC 253 ms 46912 KB
01-28.txt AC 111 ms 22612 KB
01-29.txt AC 84 ms 21716 KB
01-30.txt AC 71 ms 18516 KB
sample-01.txt AC 71 ms 19796 KB
sample-02.txt AC 72 ms 19668 KB