結果

問題 No.709 優勝可能性
ユーザー Yukino DX.Yukino DX.
提出日時 2024-09-05 10:02:02
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 197 ms / 3,500 ms
コード長 855 bytes
コンパイル時間 14,392 ms
コンパイル使用メモリ 409,408 KB
実行使用メモリ 23,424 KB
最終ジャッジ日時 2024-09-05 10:02:22
合計ジャッジ時間 18,653 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,812 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 148 ms
10,624 KB
testcase_11 AC 149 ms
8,832 KB
testcase_12 AC 172 ms
17,784 KB
testcase_13 AC 174 ms
18,432 KB
testcase_14 AC 171 ms
17,408 KB
testcase_15 AC 167 ms
16,768 KB
testcase_16 AC 167 ms
17,152 KB
testcase_17 AC 176 ms
21,476 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 197 ms
23,420 KB
testcase_21 AC 193 ms
23,424 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::input;

fn main() {
    input! {
        n:usize,
        m:usize,
        r:[[usize;m];n],
    }

    let mut ans = 0;
    let mut cnts = vec![0; n];
    let mut ids_max = vec![vec![]; m];
    let mut maxs = vec![0; m];
    for i in 0..n {
        for j in 0..m {
            if maxs[j] < r[i][j] {
                while let Some(id) = ids_max[j].pop() {
                    cnts[id] -= 1;
                    if cnts[id] == 0 {
                        ans -= 1;
                    }
                }
                ids_max[j].push(i);
                maxs[j] = r[i][j];
                cnts[i] += 1;
            }
            if maxs[j] == r[i][j] {
                ids_max[j].push(i);
                cnts[i] += 1;
            }
        }

        if cnts[i] > 0 {
            ans += 1;
        }

        println!("{}", ans);
    }
}
0