結果

問題 No.709 優勝可能性
ユーザー tentententen
提出日時 2022-08-12 08:44:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 585 ms / 3,500 ms
コード長 2,181 bytes
コンパイル時間 4,606 ms
コンパイル使用メモリ 78,948 KB
実行使用メモリ 80,244 KB
最終ジャッジ日時 2024-09-22 12:57:39
合計ジャッジ時間 9,793 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,360 KB
testcase_01 AC 53 ms
50,148 KB
testcase_02 AC 54 ms
49,876 KB
testcase_03 AC 53 ms
50,272 KB
testcase_04 AC 56 ms
52,160 KB
testcase_05 AC 53 ms
50,228 KB
testcase_06 AC 54 ms
50,528 KB
testcase_07 AC 53 ms
50,544 KB
testcase_08 AC 54 ms
50,284 KB
testcase_09 AC 55 ms
50,236 KB
testcase_10 AC 361 ms
59,084 KB
testcase_11 AC 260 ms
57,712 KB
testcase_12 AC 471 ms
59,032 KB
testcase_13 AC 458 ms
60,960 KB
testcase_14 AC 456 ms
60,044 KB
testcase_15 AC 463 ms
59,508 KB
testcase_16 AC 467 ms
63,904 KB
testcase_17 AC 585 ms
80,244 KB
testcase_18 AC 54 ms
49,980 KB
testcase_19 AC 54 ms
50,180 KB
testcase_20 AC 520 ms
59,648 KB
testcase_21 AC 520 ms
59,592 KB
testcase_22 AC 52 ms
50,404 KB
testcase_23 AC 54 ms
50,312 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();
        ArrayList<ArrayList<Integer>> probables = new ArrayList<>();
        for (int i = 0; i < m; i++) {
            probables.add(new ArrayList<>());
        }
        int[] maxes = new int[m];
        StringBuilder sb = new StringBuilder();
        int[] prizes = new int[n];
        int count = 0;
        for (int j = 0; j < n; j++) {
            for (int i = 0; i < m; i++) {
                int x = sc.nextInt();
                if (maxes[i] < x) {
                    for (int y : probables.get(i)) {
                        prizes[y]--;
                        if (prizes[y] == 0) {
                            count--;
                        }
                    }
                    probables.get(i).clear();
                    probables.get(i).add(j);
                    maxes[i] = x;
                    if (prizes[j] == 0) {
                        count++;
                    }
                    prizes[j]++;
                } else if (maxes[i] == x) {
                    probables.get(i).add(j);
                    if (prizes[j] == 0) {
                        count++;
                    }
                    prizes[j]++;
                }
            }
            sb.append(count).append("\n");
        }
        System.out.print(sb);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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