結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー 37zigen37zigen
提出日時 2016-12-28 06:10:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,776 ms / 4,000 ms
コード長 1,539 bytes
コンパイル時間 4,350 ms
コンパイル使用メモリ 80,828 KB
実行使用メモリ 71,556 KB
最終ジャッジ日時 2024-05-08 23:26:05
合計ジャッジ時間 64,492 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,712 ms
69,860 KB
testcase_01 AC 1,633 ms
68,604 KB
testcase_02 AC 1,549 ms
67,892 KB
testcase_03 AC 1,713 ms
66,632 KB
testcase_04 AC 1,670 ms
61,180 KB
testcase_05 AC 1,549 ms
61,140 KB
testcase_06 AC 1,776 ms
71,556 KB
testcase_07 AC 1,470 ms
67,144 KB
testcase_08 AC 1,517 ms
68,520 KB
testcase_09 AC 1,537 ms
66,124 KB
testcase_10 AC 1,559 ms
67,376 KB
testcase_11 AC 1,587 ms
68,176 KB
testcase_12 AC 1,537 ms
67,680 KB
testcase_13 AC 1,388 ms
65,908 KB
testcase_14 AC 1,428 ms
64,816 KB
testcase_15 AC 1,240 ms
65,252 KB
testcase_16 AC 1,644 ms
67,424 KB
testcase_17 AC 1,608 ms
67,232 KB
testcase_18 AC 1,656 ms
68,404 KB
testcase_19 AC 1,411 ms
60,480 KB
testcase_20 AC 1,437 ms
64,988 KB
testcase_21 AC 1,560 ms
66,644 KB
testcase_22 AC 1,606 ms
60,204 KB
testcase_23 AC 1,596 ms
67,732 KB
testcase_24 AC 1,341 ms
66,388 KB
testcase_25 AC 1,609 ms
67,084 KB
testcase_26 AC 1,519 ms
67,032 KB
testcase_27 AC 1,539 ms
67,552 KB
testcase_28 AC 1,391 ms
66,592 KB
testcase_29 AC 1,456 ms
60,992 KB
testcase_30 AC 129 ms
41,544 KB
testcase_31 AC 116 ms
40,256 KB
testcase_32 AC 1,695 ms
65,184 KB
testcase_33 AC 1,683 ms
67,016 KB
testcase_34 AC 1,351 ms
66,728 KB
testcase_35 AC 132 ms
41,460 KB
testcase_36 AC 132 ms
41,556 KB
testcase_37 AC 150 ms
42,008 KB
testcase_38 AC 159 ms
41,552 KB
testcase_39 AC 230 ms
44,440 KB
testcase_40 AC 231 ms
44,644 KB
testcase_41 AC 458 ms
49,772 KB
testcase_42 AC 465 ms
49,312 KB
testcase_43 AC 440 ms
49,352 KB
testcase_44 AC 412 ms
47,944 KB
testcase_45 AC 251 ms
45,288 KB
testcase_46 AC 533 ms
49,808 KB
testcase_47 AC 516 ms
49,388 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