結果

問題 No.21 平均の差
ユーザー fujisufujisu
提出日時 2015-02-08 05:03:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,021 bytes
コンパイル時間 2,081 ms
コンパイル使用メモリ 74,496 KB
実行使用メモリ 59,780 KB
最終ジャッジ日時 2023-09-05 15:20:25
合計ジャッジ時間 8,993 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
48,988 KB
testcase_01 AC 59 ms
52,592 KB
testcase_02 WA -
testcase_03 AC 42 ms
49,012 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.util.InputMismatchException;

public class Main {
	int n, m;
	int[] a;
	int min;

	void bt(int k, int[] s) {
		if (n <= k) {
			if (!check(s)) {
				return;
			}
			min = Math.min(min, calc(s));
		} else {
			for (int i = 0; i < m; i++) {
				s[k] = i;
				bt(k + 1, s);
			}
		}
	}

	boolean check(int[] s) {
		int[] a = new int[m];
		for (int i = 0; i < m; i++) {
			a[s[i]]++;
		}
		for (int i = 0; i < m; i++) {
			if (a[i] == 0) {
				return false;
			}
		}
		return true;
	}

	int calc(int[] s) {
		int[] sum = new int[m];
		int[] num = new int[m];
		for (int i = 0; i < m; i++) {
			sum[s[i]] += a[i];
			num[s[i]]++;
		}
		double max = 0, min = 1 << 25;
		for (int i = 0; i < m; i++) {
			max = Math.max(max, 1.0 * sum[i] / num[i]);
			min = Math.min(min, 1.0 * sum[i] / num[i]);
		}
		int res = (int) (max - min);
		return res;
	}

	void run() {
		MyScanner sc = new MyScanner();

		n = sc.nextInt();
		m = sc.nextInt();
		a = sc.nextIntArray(n);

		min = 1 << 25;
		bt(0, new int[n]);
		System.out.println(min);
	}

	public static void main(String[] args) {
		new Main().run();
	}

	public void mapDebug(int[][] a) {
		System.out.println("--------map display---------");
		for (int i = 0; i < a.length; i++) {
			for (int j = 0; j < a[i].length; j++) {
				System.out.printf("%3d ", a[i][j]);
			}
			System.out.println();
		}
		System.out.println("----------------------------" + '\n');
	}

	class MyScanner {
		int read() {
			try {
				return System.in.read();
			} catch (IOException e) {
				throw new InputMismatchException();
			}
		}

		boolean isSpaceChar(int c) {
			return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1;
		}

		boolean isEndline(int c) {
			return c == '\n' || c == '\r' || c == -1;
		}

		int nextInt() {
			return Integer.parseInt(next());
		}

		int[] nextIntArray(int n) {
			int[] array = new int[n];
			for (int i = 0; i < n; i++)
				array[i] = nextInt();
			return array;
		}

		long nextLong() {
			return Long.parseLong(next());
		}

		long[] nextLongArray(int n) {
			long[] array = new long[n];
			for (int i = 0; i < n; i++)
				array[i] = nextLong();
			return array;
		}

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

		double[] nextDoubleArray(int n) {
			double[] array = new double[n];
			for (int i = 0; i < n; i++)
				array[i] = nextDouble();
			return array;
		}

		String next() {
			int c = read();
			while (isSpaceChar(c))
				c = read();
			StringBuilder res = new StringBuilder();
			do {
				res.appendCodePoint(c);
				c = read();
			} while (!isSpaceChar(c));
			return res.toString();
		}

		String[] nextStringArray(int n) {
			String[] array = new String[n];
			for (int i = 0; i < n; i++)
				array[i] = next();

			return array;
		}

		String nextLine() {
			int c = read();
			while (isEndline(c))
				c = read();
			StringBuilder res = new StringBuilder();
			do {
				res.appendCodePoint(c);
				c = read();
			} while (!isEndline(c));
			return res.toString();
		}
	}
}
0