結果

問題 No.2680 研究室配属
ユーザー ks2mks2m
提出日時 2024-03-20 21:09:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,422 ms / 2,000 ms
コード長 1,168 bytes
コンパイル時間 3,575 ms
コンパイル使用メモリ 86,436 KB
実行使用メモリ 63,868 KB
最終ジャッジ日時 2024-09-30 06:55:45
合計ジャッジ時間 21,308 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,076 KB
testcase_01 AC 140 ms
41,584 KB
testcase_02 AC 151 ms
41,324 KB
testcase_03 AC 202 ms
43,372 KB
testcase_04 AC 212 ms
44,028 KB
testcase_05 AC 360 ms
47,476 KB
testcase_06 AC 375 ms
48,028 KB
testcase_07 AC 352 ms
47,600 KB
testcase_08 AC 351 ms
47,748 KB
testcase_09 AC 261 ms
46,924 KB
testcase_10 AC 654 ms
48,672 KB
testcase_11 AC 621 ms
48,444 KB
testcase_12 AC 669 ms
51,280 KB
testcase_13 AC 624 ms
48,468 KB
testcase_14 AC 734 ms
52,740 KB
testcase_15 AC 330 ms
47,840 KB
testcase_16 AC 1,039 ms
59,568 KB
testcase_17 AC 505 ms
48,200 KB
testcase_18 AC 876 ms
57,496 KB
testcase_19 AC 1,218 ms
60,472 KB
testcase_20 AC 1,145 ms
59,764 KB
testcase_21 AC 483 ms
48,340 KB
testcase_22 AC 952 ms
58,812 KB
testcase_23 AC 1,395 ms
62,008 KB
testcase_24 AC 1,422 ms
62,476 KB
testcase_25 AC 1,403 ms
63,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int[] a = new int[m];
		for (int i = 0; i < m; i++) {
			a[i] = sc.nextInt();
		}
		int[][] t = new int[n][m];
		for (int i = 0; i < n; i++) {
			for (int j = 0; j < m; j++) {
				t[i][j] = sc.nextInt();
			}
		}
		sc.close();

		int[] ans = new int[n];
		Arrays.fill(ans, -1);
		List<List<Integer>> list = new ArrayList<>(m);
		for (int i = 0; i < m; i++) {
			list.add(new ArrayList<>());
		}
		for (int i = 0; i < m; i++) {
			for (int j = 0; j < n; j++) {
				if (ans[j] == -1) {
					list.get(t[j][i]).add(j);
					ans[j] = t[j][i];
				}
			}
			for (int j = 0; j < m; j++) {
				List<Integer> wk = list.get(j);
				while (wk.size() > a[j]) {
					int e = wk.remove(wk.size() - 1);
					ans[e] = -1;
				}
			}
		}

		StringBuilder sb = new StringBuilder();
		for (int i : ans) {
			sb.append(i).append(' ');
		}
		sb.deleteCharAt(sb.length() - 1);
		System.out.println(sb.toString());
	}
}
0