結果

問題 No.709 優勝可能性
ユーザー tentententen
提出日時 2020-12-28 14:21:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,983 ms / 3,500 ms
コード長 1,373 bytes
コンパイル時間 1,940 ms
コンパイル使用メモリ 80,420 KB
実行使用メモリ 126,296 KB
最終ジャッジ日時 2024-10-03 04:40:45
合計ジャッジ時間 18,730 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
41,584 KB
testcase_01 AC 115 ms
41,492 KB
testcase_02 AC 125 ms
41,420 KB
testcase_03 AC 123 ms
41,216 KB
testcase_04 AC 120 ms
41,448 KB
testcase_05 AC 105 ms
41,532 KB
testcase_06 AC 121 ms
41,052 KB
testcase_07 AC 114 ms
41,568 KB
testcase_08 AC 114 ms
41,360 KB
testcase_09 AC 118 ms
41,416 KB
testcase_10 AC 910 ms
58,964 KB
testcase_11 AC 581 ms
49,556 KB
testcase_12 AC 1,369 ms
58,704 KB
testcase_13 AC 1,459 ms
65,064 KB
testcase_14 AC 1,476 ms
64,924 KB
testcase_15 AC 1,352 ms
67,480 KB
testcase_16 AC 1,567 ms
75,124 KB
testcase_17 AC 1,983 ms
126,296 KB
testcase_18 AC 100 ms
41,224 KB
testcase_19 AC 121 ms
41,548 KB
testcase_20 AC 1,494 ms
57,468 KB
testcase_21 AC 1,508 ms
58,144 KB
testcase_22 AC 138 ms
41,236 KB
testcase_23 AC 111 ms
41,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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[] maxes = new int[m];
        ArrayList<HashSet<Integer>> tops = new ArrayList<>();
        for (int i = 0; i < m; i++) {
            tops.add(new HashSet<>());
        }
        HashMap<Integer, Integer> map = new HashMap<>();
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
             for (int j = 0; j < m; j++) {
                int x = sc.nextInt();
                if (maxes[j] < x) {
                    maxes[j] = x;
                    for (int y : tops.get(j)) {
                        if (map.get(y) == 1) {
                            map.remove(y);
                        } else {
                            map.put(y, map.get(y) - 1);
                        }
                    }
                    tops.get(j).clear();
                    tops.get(j).add(i);
                    map.put(i, map.getOrDefault(i, 0) + 1);
                } else if (maxes[j] == x) {
                    tops.get(j).add(i);
                    map.put(i, map.getOrDefault(i, 0) + 1);
                }
            }
            sb.append(map.size()).append("\n");
        }
        System.out.print(sb);
    }
}
0