結果

問題 No.1668 Grayscale
ユーザー noiminoimi
提出日時 2021-08-31 01:19:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 664 ms / 4,000 ms
コード長 626 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 245,608 KB
最終ジャッジ日時 2024-12-15 09:00:50
合計ジャッジ時間 4,715 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,864 KB
testcase_01 AC 38 ms
52,748 KB
testcase_02 AC 39 ms
52,328 KB
testcase_03 AC 38 ms
52,552 KB
testcase_04 AC 39 ms
52,516 KB
testcase_05 AC 39 ms
52,972 KB
testcase_06 AC 284 ms
245,608 KB
testcase_07 AC 286 ms
172,852 KB
testcase_08 AC 142 ms
84,828 KB
testcase_09 AC 664 ms
191,084 KB
testcase_10 AC 661 ms
237,280 KB
testcase_11 AC 39 ms
53,324 KB
testcase_12 AC 66 ms
68,092 KB
testcase_13 AC 90 ms
82,312 KB
testcase_14 AC 180 ms
109,512 KB
testcase_15 AC 146 ms
98,760 KB
testcase_16 AC 135 ms
93,896 KB
testcase_17 AC 86 ms
79,820 KB
testcase_18 AC 38 ms
52,296 KB
testcase_19 AC 38 ms
52,736 KB
testcase_20 AC 50 ms
62,808 KB
testcase_21 AC 69 ms
70,160 KB
testcase_22 AC 38 ms
53,160 KB
testcase_23 AC 37 ms
53,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,N = map(int, input().split())
ans = 1

c = [list(map(int, input().split())) for _ in range(H)]

ran = []
for i in range(H):
    for j in range(W-1):
        a = c[i][j]
        b = c[i][j+1]
        if(a!=b):
            if(a<b):
                a,b = b,a
            ran.append((a << 31) + b)

for i in range(H-1):
    for j in range(W):
        a = c[i][j]
        b = c[i+1][j]
        if(a!=b):
            if(a<b):
                a,b = b,a
            ran.append((a << 31) + b)

ran.sort()
mx = 0
for e in ran:
    l, r = e & ((1 << 31) - 1), (e >> 31)

    if(l >= mx):
        mx = r
        ans += 1

print(ans)
0