結果

問題 No.709 優勝可能性
ユーザー tentententen
提出日時 2022-10-19 10:11:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 642 ms / 3,500 ms
コード長 2,066 bytes
コンパイル時間 2,192 ms
コンパイル使用メモリ 79,312 KB
実行使用メモリ 95,412 KB
最終ジャッジ日時 2024-06-29 13:38:25
合計ジャッジ時間 9,565 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,876 KB
testcase_01 AC 49 ms
36,848 KB
testcase_02 AC 50 ms
37,116 KB
testcase_03 AC 50 ms
43,860 KB
testcase_04 AC 51 ms
37,140 KB
testcase_05 AC 51 ms
36,556 KB
testcase_06 AC 51 ms
36,596 KB
testcase_07 AC 49 ms
36,584 KB
testcase_08 AC 51 ms
37,172 KB
testcase_09 AC 49 ms
36,872 KB
testcase_10 AC 309 ms
48,968 KB
testcase_11 AC 225 ms
47,344 KB
testcase_12 AC 441 ms
49,784 KB
testcase_13 AC 436 ms
50,348 KB
testcase_14 AC 458 ms
51,196 KB
testcase_15 AC 396 ms
51,188 KB
testcase_16 AC 461 ms
59,056 KB
testcase_17 AC 642 ms
95,412 KB
testcase_18 AC 46 ms
44,284 KB
testcase_19 AC 49 ms
37,128 KB
testcase_20 AC 462 ms
48,128 KB
testcase_21 AC 438 ms
47,276 KB
testcase_22 AC 49 ms
37,168 KB
testcase_23 AC 48 ms
37,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        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<>());
        }
        int[] counts = new int[n];
        int ans = 0;
        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) {
                    for (int y : tops.get(j)) {
                        counts[y]--;
                        if (counts[y] == 0) {
                            ans--;
                        }
                    }
                    tops.get(j).clear();
                    tops.get(j).add(i);
                    maxes[j] = x;
                    counts[i]++;
                } else if (maxes[j] == x) {
                    tops.get(j).add(i);
                    counts[i]++;
                }
            }
            if (counts[i] > 0) {
                ans++;
            }
            sb.append(ans).append("\n");
        }
        System.out.print(sb);
    }

}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0