結果
問題 | No.21 平均の差 |
ユーザー | fujisu |
提出日時 | 2015-02-08 05:10:58 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,059 bytes |
コンパイル時間 | 2,291 ms |
コンパイル使用メモリ | 78,024 KB |
実行使用メモリ | 50,404 KB |
最終ジャッジ日時 | 2024-06-23 10:54:02 |
合計ジャッジ時間 | 3,458 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
50,212 KB |
testcase_01 | AC | 54 ms
49,864 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 51 ms
50,148 KB |
testcase_06 | AC | 51 ms
50,168 KB |
testcase_07 | WA | - |
testcase_08 | AC | 53 ms
50,080 KB |
testcase_09 | AC | 63 ms
50,196 KB |
ソースコード
import java.io.IOException; import java.util.InputMismatchException; public class Main { int n, m; int[] a; int max; void bt(int k, int[] s, int p) { if (n <= k) { if (!check(s)) { return; } max = Math.max(max, calc(s)); } else { for (int i = 0; i <= p; i++) { s[k] = i; bt(k + 1, s, Math.max(i + 1, p)); } } } 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 << 30; 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 - 0.0001) + 1; return res; } void run() { MyScanner sc = new MyScanner(); n = sc.nextInt(); m = sc.nextInt(); a = sc.nextIntArray(n); max = 0; bt(0, new int[n], 0); System.out.println(max); } 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(); } } }