結果

問題 No.709 優勝可能性
ユーザー htensaihtensai
提出日時 2020-01-29 09:11:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 865 ms / 3,500 ms
コード長 1,664 bytes
コンパイル時間 2,331 ms
コンパイル使用メモリ 78,372 KB
実行使用メモリ 98,480 KB
最終ジャッジ日時 2024-09-15 20:08:13
合計ジャッジ時間 12,336 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,784 KB
testcase_01 AC 51 ms
36,512 KB
testcase_02 AC 50 ms
36,924 KB
testcase_03 AC 50 ms
36,968 KB
testcase_04 AC 47 ms
36,468 KB
testcase_05 AC 49 ms
36,676 KB
testcase_06 AC 50 ms
36,504 KB
testcase_07 AC 51 ms
36,864 KB
testcase_08 AC 52 ms
36,932 KB
testcase_09 AC 51 ms
37,068 KB
testcase_10 AC 392 ms
47,360 KB
testcase_11 AC 241 ms
45,296 KB
testcase_12 AC 488 ms
50,428 KB
testcase_13 AC 655 ms
52,492 KB
testcase_14 AC 537 ms
49,500 KB
testcase_15 AC 549 ms
51,300 KB
testcase_16 AC 611 ms
57,272 KB
testcase_17 AC 865 ms
98,480 KB
testcase_18 AC 49 ms
36,968 KB
testcase_19 AC 51 ms
36,508 KB
testcase_20 AC 554 ms
49,724 KB
testcase_21 AC 570 ms
49,692 KB
testcase_22 AC 50 ms
36,852 KB
testcase_23 AC 50 ms
37,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] first = br.readLine().split(" ", 2);
        int n = Integer.parseInt(first[0]);
        int m = Integer.parseInt(first[1]);
        HashSet<Integer>[] maxIdxes = new HashSet[m];
        int[] counts = new int[n];
        for (int i = 0; i < m; i++) {
            maxIdxes[i] = new HashSet<Integer>();
        }
        int ans = 0;
        int[] maxValues = new int[m];
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            String[] line = br.readLine().split(" ", m);
            for (int j = 0; j < m; j++) {
                int x = Integer.parseInt(line[j]);
                if (maxValues[j] < x) {
                    maxValues[j] = x;
                    for (int y : maxIdxes[j]) {
                        counts[y]--;
                        if (counts[y] == 0) {
                            ans--;
                        }
                    }
                    maxIdxes[j].clear();
                    maxIdxes[j].add(i);
                    counts[i]++;
                    if (counts[i] == 1) {
                        ans++;
                    }
                } else if (maxValues[j] == x) {
                    maxIdxes[j].add(i);
                    counts[i]++;
                    if (counts[i] == 1) {
                        ans++;
                    }
                }
            }
            sb.append(ans).append("\n");
        }
        System.out.print(sb);
    }
}
0