結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー 37zigen37zigen
提出日時 2016-12-28 06:10:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,683 ms / 4,000 ms
コード長 1,539 bytes
コンパイル時間 4,230 ms
コンパイル使用メモリ 85,056 KB
実行使用メモリ 78,116 KB
最終ジャッジ日時 2024-12-15 07:31:42
合計ジャッジ時間 62,241 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,619 ms
77,784 KB
testcase_01 AC 1,506 ms
72,176 KB
testcase_02 AC 1,436 ms
76,028 KB
testcase_03 AC 1,575 ms
76,048 KB
testcase_04 AC 1,638 ms
75,888 KB
testcase_05 AC 1,545 ms
76,084 KB
testcase_06 AC 1,638 ms
78,116 KB
testcase_07 AC 1,424 ms
71,328 KB
testcase_08 AC 1,427 ms
77,708 KB
testcase_09 AC 1,542 ms
75,896 KB
testcase_10 AC 1,524 ms
76,728 KB
testcase_11 AC 1,637 ms
75,804 KB
testcase_12 AC 1,565 ms
76,540 KB
testcase_13 AC 1,440 ms
75,464 KB
testcase_14 AC 1,452 ms
76,156 KB
testcase_15 AC 1,290 ms
75,304 KB
testcase_16 AC 1,619 ms
75,576 KB
testcase_17 AC 1,613 ms
75,800 KB
testcase_18 AC 1,618 ms
75,640 KB
testcase_19 AC 1,417 ms
77,048 KB
testcase_20 AC 1,445 ms
75,468 KB
testcase_21 AC 1,408 ms
76,332 KB
testcase_22 AC 1,597 ms
76,624 KB
testcase_23 AC 1,578 ms
77,120 KB
testcase_24 AC 1,435 ms
75,444 KB
testcase_25 AC 1,529 ms
76,912 KB
testcase_26 AC 1,452 ms
75,440 KB
testcase_27 AC 1,557 ms
76,236 KB
testcase_28 AC 1,383 ms
76,284 KB
testcase_29 AC 1,537 ms
75,556 KB
testcase_30 AC 134 ms
53,932 KB
testcase_31 AC 133 ms
54,228 KB
testcase_32 AC 1,648 ms
77,044 KB
testcase_33 AC 1,683 ms
75,828 KB
testcase_34 AC 1,354 ms
75,416 KB
testcase_35 AC 136 ms
53,860 KB
testcase_36 AC 122 ms
53,008 KB
testcase_37 AC 159 ms
54,036 KB
testcase_38 AC 157 ms
54,252 KB
testcase_39 AC 237 ms
57,608 KB
testcase_40 AC 234 ms
57,624 KB
testcase_41 AC 441 ms
59,748 KB
testcase_42 AC 449 ms
60,216 KB
testcase_43 AC 443 ms
59,980 KB
testcase_44 AC 437 ms
59,604 KB
testcase_45 AC 264 ms
57,780 KB
testcase_46 AC 534 ms
59,692 KB
testcase_47 AC 515 ms
59,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.*;

public class Q433 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int K = sc.nextInt();
		int[] S = new int[N];
		int[] P = new int[N];
		String[] U = new String[N];
		for (int i = 0; i < N; ++i) {
			S[i] = sc.nextInt();
			P[i] = sc.nextInt();
			U[i] = sc.next();
		}
		Integer[] ord = new Integer[N];
		for (int i = 0; i < N; ++i) {
			ord[i] = i;
		}
		Arrays.sort(ord, new Comparator<Integer>() {
			@Override
			public int compare(Integer o1, Integer o2) {
				if (S[o1] != S[o2]) {
					return -Integer.compare(S[o1], S[o2]);
				} else {
					return Integer.compare(P[o1], P[o2]);
				}
			}
		});
		int[] C = new int[N];
		HashMap<String, Integer> map = new HashMap<>();
		for (int i = 0; i < N; ++i) {
			if (!map.containsKey(U[ord[i]])) {
				map.put(U[ord[i]], 0);
			} else {
				C[ord[i]] = map.get(U[ord[i]]) + 1;
				map.put(U[ord[i]], map.get(U[ord[i]]) + 1);
			}
		}
		Arrays.sort(ord, new Comparator<Integer>() {
			@Override
			public int compare(Integer o1, Integer o2) {
				if (S[o1] != S[o2]) {
					return -Integer.compare(S[o1], S[o2]);
				} else if (C[o1] != C[o2]) {
					return Integer.compare(C[o1], C[o2]);
				} else if (P[o1] != P[o2]) {
					return Integer.compare(P[o1], P[o2]);
				} else {
					throw new AssertionError();
				}
			}
		});
		for(int i=0;i<K;++i){
			System.out.println(ord[i]);
		}
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0