結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 39 ms
52,608 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 323 ms
245,644 KB
testcase_07 AC 309 ms
172,836 KB
testcase_08 AC 139 ms
84,676 KB
testcase_09 AC 706 ms
190,976 KB
testcase_10 AC 695 ms
237,904 KB
testcase_11 AC 40 ms
52,864 KB
testcase_12 AC 65 ms
68,136 KB
testcase_13 AC 90 ms
82,440 KB
testcase_14 AC 180 ms
109,496 KB
testcase_15 AC 149 ms
98,624 KB
testcase_16 AC 136 ms
94,328 KB
testcase_17 AC 84 ms
80,000 KB
testcase_18 AC 39 ms
52,096 KB
testcase_19 AC 38 ms
51,968 KB
testcase_20 AC 50 ms
62,720 KB
testcase_21 AC 69 ms
69,856 KB
testcase_22 AC 37 ms
52,352 KB
testcase_23 AC 39 ms
52,352 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