結果

問題 No.709 優勝可能性
ユーザー kurimupykurimupy
提出日時 2020-06-18 01:28:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 836 ms / 3,500 ms
コード長 953 bytes
コンパイル時間 717 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 175,420 KB
最終ジャッジ日時 2024-07-03 12:36:36
合計ジャッジ時間 9,492 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,864 KB
testcase_01 AC 43 ms
56,076 KB
testcase_02 AC 45 ms
55,176 KB
testcase_03 AC 43 ms
56,536 KB
testcase_04 AC 41 ms
54,916 KB
testcase_05 AC 41 ms
54,932 KB
testcase_06 AC 42 ms
55,416 KB
testcase_07 AC 45 ms
55,640 KB
testcase_08 AC 41 ms
55,156 KB
testcase_09 AC 42 ms
55,180 KB
testcase_10 AC 388 ms
106,092 KB
testcase_11 AC 251 ms
94,744 KB
testcase_12 AC 589 ms
132,940 KB
testcase_13 AC 494 ms
152,516 KB
testcase_14 AC 586 ms
156,624 KB
testcase_15 AC 750 ms
157,136 KB
testcase_16 AC 836 ms
162,748 KB
testcase_17 AC 683 ms
175,420 KB
testcase_18 AC 40 ms
55,112 KB
testcase_19 AC 41 ms
56,132 KB
testcase_20 AC 439 ms
163,872 KB
testcase_21 AC 442 ms
163,884 KB
testcase_22 AC 41 ms
55,624 KB
testcase_23 AC 42 ms
54,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import heapq
N, M = map(int, input().split())
data = [[]for j in range(M)]

for i in range(N):
    x = list(map(int, input().split()))
    data.append(x)
    for j in range(M):
        data[j].append(x[j])

get_index = [[-1 for i in range(N)] for j in range(M)]
for i in range(M):
    que = []
    heapq.heapify(que)
    X = data[i]
    MAX = 0
    for j in range(N):
        heapq.heappush(que, (X[j], j))
        MAX = max(X[j], MAX)
        while que[0][0] < MAX:
            value, index = heapq.heappop(que)
            get_index[i][index] = j

    for value, index in que:
        get_index[i][index] = N
D = deque()
for i in range(N):
    maxi = i
    for j in range(M):
        maxi = max(maxi, get_index[j][i])
    D.append((i, 1))
    D.append((maxi, -1))

ans = [0 for i in range(N+1)]
while D:
    x, v = D.popleft()
    ans[x] += v
for i in range(N):
    ans[i+1] += ans[i]
for i in range(N):
    print(ans[i])
0