結果

問題 No.709 優勝可能性
ユーザー 草苺奶昔草苺奶昔
提出日時 2024-09-08 23:50:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 504 ms / 3,500 ms
コード長 1,082 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,384 KB
最終ジャッジ日時 2024-09-08 23:50:21
合計ジャッジ時間 7,572 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 229 ms
24,576 KB
testcase_11 AC 167 ms
22,912 KB
testcase_12 AC 348 ms
29,440 KB
testcase_13 AC 483 ms
26,880 KB
testcase_14 AC 419 ms
25,728 KB
testcase_15 AC 402 ms
24,576 KB
testcase_16 AC 419 ms
25,816 KB
testcase_17 AC 504 ms
31,924 KB
testcase_18 AC 30 ms
10,624 KB
testcase_19 AC 30 ms
10,624 KB
testcase_20 AC 431 ms
32,128 KB
testcase_21 AC 431 ms
32,384 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines


# %%
N, M = map(int, readline().split())
querys = readlines()


# %%
best_param_cnt = [0] * N
best_param = [0] * M
best_param_member = [[] for _ in range(M)]
can_win_cnt = 0


# %%
def solve():
    global can_win_cnt
    for n, line in enumerate(querys):
        R = map(int, line.split())
        for m, x in enumerate(R):
            if x < best_param[m]:
                continue
            if x == best_param[m]:
                best_param_member[m].append(n)
                best_param_cnt[n] += 1
                continue
            best_param[m] = x
            best_param_cnt[n] += 1
            for k in best_param_member[m]:
                best_param_cnt[k] -= 1
                if best_param_cnt[k] == 0:
                    can_win_cnt -= 1
            best_param_member[m] = [n]
        can_win_cnt += (best_param_cnt[n] > 0)
        yield can_win_cnt


# %%
answers = solve()
print('\n'.join(map(str, answers)))


# %%
0