結果
問題 | No.5 数字のブロック |
ユーザー | dazy |
提出日時 | 2016-09-03 16:46:54 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 422 ms / 5,000 ms |
コード長 | 1,501 bytes |
コンパイル時間 | 3,654 ms |
コンパイル使用メモリ | 77,184 KB |
実行使用メモリ | 58,948 KB |
最終ジャッジ日時 | 2024-11-18 09:24:18 |
合計ジャッジ時間 | 11,785 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 116 ms
52,944 KB |
testcase_01 | AC | 124 ms
54,068 KB |
testcase_02 | AC | 123 ms
53,884 KB |
testcase_03 | AC | 337 ms
58,676 KB |
testcase_04 | AC | 299 ms
58,668 KB |
testcase_05 | AC | 350 ms
58,644 KB |
testcase_06 | AC | 311 ms
58,784 KB |
testcase_07 | AC | 299 ms
58,764 KB |
testcase_08 | AC | 331 ms
58,940 KB |
testcase_09 | AC | 214 ms
57,052 KB |
testcase_10 | AC | 360 ms
58,736 KB |
testcase_11 | AC | 281 ms
58,520 KB |
testcase_12 | AC | 320 ms
58,800 KB |
testcase_13 | AC | 338 ms
58,948 KB |
testcase_14 | AC | 134 ms
53,868 KB |
testcase_15 | AC | 142 ms
54,360 KB |
testcase_16 | AC | 376 ms
58,816 KB |
testcase_17 | AC | 422 ms
58,832 KB |
testcase_18 | AC | 415 ms
58,936 KB |
testcase_19 | AC | 403 ms
58,836 KB |
testcase_20 | AC | 107 ms
52,992 KB |
testcase_21 | AC | 119 ms
54,056 KB |
testcase_22 | AC | 123 ms
54,020 KB |
testcase_23 | AC | 122 ms
53,976 KB |
testcase_24 | AC | 140 ms
54,232 KB |
testcase_25 | AC | 171 ms
54,172 KB |
testcase_26 | AC | 122 ms
54,128 KB |
testcase_27 | AC | 106 ms
53,056 KB |
testcase_28 | AC | 118 ms
53,812 KB |
testcase_29 | AC | 299 ms
58,580 KB |
testcase_30 | AC | 223 ms
56,880 KB |
testcase_31 | AC | 123 ms
53,868 KB |
testcase_32 | AC | 121 ms
54,076 KB |
testcase_33 | AC | 119 ms
53,952 KB |
ソースコード
import java.util.Scanner; public class Run { public static void main (String arg[]) { Scanner scan = new Scanner(System.in); int L = scan.nextInt(); int N = scan.nextInt(); if (L < 1||L > 10000||N < 1||N > 10000) System.exit(1); int[] W = new int[N]; for (int i = 0; i < N; i++) { W[i] = scan.nextInt(); if (W[i] < 1||W[i] > L) System.exit(1); } for (int i = N; i > 1; i--) { heapSort(i, W); swap(W, 0, i-1); } int blocks = 0; for (int i = 0; i < N; i++) { L -= W[i]; if (L < 0) break; blocks++; } System.out.println(blocks); } public static void heapSort (int leaf, int[] A) { int root = leaf/2-1; int tmp; for (int i = root; i >= 0; i--) { while ((root+1)*2 <= leaf) { if ((root+1)*2 == leaf) { tmp = (root+1)*2 - 1; } else { if (A[(root+1)*2 - 1] < A[(root+1)*2]) tmp = (root+1)*2; else tmp = (root+1)*2 - 1; } if (A[root] < A[tmp]) { swap(A, root, tmp); root = tmp; } else break; } root = i - 1; } } public static void swap (int[] A, int a, int b){ int tmp; tmp = A[a]; A[a] = A[b]; A[b] = tmp; } }