結果

問題 No.2680 研究室配属
ユーザー tentententen
提出日時 2024-03-25 09:25:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 421 ms / 2,000 ms
コード長 2,015 bytes
コンパイル時間 2,389 ms
コンパイル使用メモリ 88,404 KB
実行使用メモリ 62,860 KB
最終ジャッジ日時 2024-09-30 13:59:24
合計ジャッジ時間 8,765 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
51,052 KB
testcase_01 AC 65 ms
50,804 KB
testcase_02 AC 69 ms
50,932 KB
testcase_03 AC 87 ms
51,736 KB
testcase_04 AC 90 ms
51,472 KB
testcase_05 AC 143 ms
53,280 KB
testcase_06 AC 147 ms
53,464 KB
testcase_07 AC 137 ms
53,844 KB
testcase_08 AC 146 ms
53,812 KB
testcase_09 AC 132 ms
52,732 KB
testcase_10 AC 210 ms
58,068 KB
testcase_11 AC 199 ms
57,948 KB
testcase_12 AC 226 ms
57,728 KB
testcase_13 AC 207 ms
58,116 KB
testcase_14 AC 228 ms
57,796 KB
testcase_15 AC 152 ms
55,916 KB
testcase_16 AC 315 ms
60,468 KB
testcase_17 AC 174 ms
56,636 KB
testcase_18 AC 245 ms
58,180 KB
testcase_19 AC 355 ms
60,688 KB
testcase_20 AC 326 ms
60,396 KB
testcase_21 AC 160 ms
56,196 KB
testcase_22 AC 275 ms
58,156 KB
testcase_23 AC 418 ms
62,744 KB
testcase_24 AC 415 ms
62,692 KB
testcase_25 AC 421 ms
62,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        int[] counts = new int[m];
        for (int i = 0; i < m; i++) {
            counts[i] = sc.nextInt();
        }
        int[][] selected = new int[n][m];
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                selected[i][j] = sc.nextInt();
            }
        }
        boolean[] decided = new boolean[n];
        int[] ans = new int[n];
        for (int i = 0; i < m; i++) {
            for (int j = 0; j < n; j++) {
                if (decided[j]) {
                    continue;
                }
                if (counts[selected[j][i]] > 0) {
                    counts[selected[j][i]]--;
                    decided[j] = true;
                    ans[j] = selected[j][i];
                }
            }
        }
        System.out.println(Arrays.stream(ans).mapToObj(String::valueOf).collect(Collectors.joining(" ")));
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0