結果
問題 | No.1479 Matrix Eraser |
ユーザー | aaaaaaaaaa2230 |
提出日時 | 2021-04-16 21:13:21 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,265 bytes |
コンパイル時間 | 169 ms |
コンパイル使用メモリ | 82,252 KB |
実行使用メモリ | 118,912 KB |
最終ジャッジ日時 | 2024-07-03 00:20:57 |
合計ジャッジ時間 | 12,820 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 62 ms
83,364 KB |
testcase_01 | AC | 57 ms
77,228 KB |
testcase_02 | WA | - |
testcase_03 | AC | 58 ms
76,564 KB |
testcase_04 | WA | - |
testcase_05 | AC | 59 ms
76,420 KB |
testcase_06 | AC | 59 ms
76,864 KB |
testcase_07 | AC | 174 ms
98,296 KB |
testcase_08 | AC | 191 ms
100,684 KB |
testcase_09 | AC | 277 ms
107,476 KB |
testcase_10 | AC | 391 ms
115,560 KB |
testcase_11 | AC | 308 ms
109,420 KB |
testcase_12 | AC | 172 ms
98,900 KB |
testcase_13 | AC | 189 ms
100,964 KB |
testcase_14 | AC | 177 ms
99,068 KB |
testcase_15 | AC | 115 ms
96,512 KB |
testcase_16 | AC | 184 ms
99,528 KB |
testcase_17 | AC | 468 ms
118,772 KB |
testcase_18 | AC | 466 ms
118,624 KB |
testcase_19 | AC | 459 ms
118,692 KB |
testcase_20 | AC | 468 ms
118,544 KB |
testcase_21 | AC | 483 ms
118,480 KB |
testcase_22 | AC | 448 ms
118,768 KB |
testcase_23 | AC | 473 ms
118,912 KB |
testcase_24 | AC | 458 ms
118,804 KB |
testcase_25 | AC | 471 ms
118,540 KB |
testcase_26 | AC | 459 ms
118,584 KB |
testcase_27 | TLE | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
ソースコード
from collections import defaultdict h,w = map(int,input().split()) A = [list(map(int,input().split())) for i in range(h)] xy = [[] for i in range(5*10**5+5)] for i in range(h): for j in range(w): xy[A[i][j]].append((i,j)) ans = 0 for i in range(5*10**5,0,-1): if xy[i] == []: continue dich = defaultdict(int) dicw = defaultdict(int) for x,y in xy[i]: dich[x] += 1 dicw[y] += 1 dels = set() while True: mh = 0 ih = 0 mw = 0 iw = 0 for k,v in dich.items(): if v > mh: mh = v ih = k for k,v in dicw.items(): if v > mw: mw = v iw = k if mh == mw == 0: break ans += 1 if mh >= mw: dich[ih] = 0 for x,y in xy[i]: if (x,y) in dels: continue if x == ih: dicw[y] -= 1 dels.add((x,y)) else: dicw[iw] = 0 for x,y in xy[i]: if (x,y) in dels: continue if y == iw: dich[x] -= 1 dels.add((x,y)) print(ans)