結果
問題 | No.615 集合に分けよう |
ユーザー | aaaaasatori |
提出日時 | 2018-02-15 17:17:56 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,320 bytes |
コンパイル時間 | 3,754 ms |
コンパイル使用メモリ | 85,036 KB |
実行使用メモリ | 92,352 KB |
最終ジャッジ日時 | 2024-06-07 19:27:32 |
合計ジャッジ時間 | 13,895 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 120 ms
40,868 KB |
testcase_03 | AC | 119 ms
41,148 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 131 ms
41,540 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 124 ms
40,916 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 275 ms
48,688 KB |
testcase_16 | AC | 121 ms
41,336 KB |
testcase_17 | AC | 493 ms
48,352 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | TLE | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
import java.util.Arrays; import java.util.Scanner; public class No615 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int K = sc.nextInt(); if(N == K) { System.out.println(0); }else { long a[] = new long[N]; for(int i = 0;i < N;i++) { a[i] = sc.nextLong(); } Arrays.sort(a); if(K == 1) { System.out.println(a[N-1] - a[0]); }else { int b[] = new int[K-1]; //分割する位置を入れる配列(a[i] a[i+1]の間で分割するならiが入る) long max[] = new long[K-1]; long sum = 0; for(int i = 0;i < K-1;i++) { max[i] = 0; } for(int i = 0;i < N-1;i++) { if(max[0] < a[i+1] - a[i]) { max[0] = a[i+1] - a[i]; b[0] = i; Arrays.sort(max); Arrays.sort(b); } } for(int i = 0;i < N;i++) { //要らない System.out.print(a[i] + " "); } System.out.println(); for(int i = 0;i < K-1;i++) { System.out.println("b = " + b[i] + "max = " + max[i]); }//要らない for(int i = 0;i < K-1;i++) { if(i == 0) { sum += a[b[i]] - a[0]; }else { sum += a[b[i]] - a[b[i-1]+1]; } if(i + 1 == K - 1) { sum += a[N-1] - a[b[i]+1]; } } System.out.println(sum); } } } }