結果

問題 No.1668 Grayscale
ユーザー とりゐとりゐ
提出日時 2022-11-20 00:35:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,505 ms / 4,000 ms
コード長 569 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 372,136 KB
最終ジャッジ日時 2024-09-21 05:02:10
合計ジャッジ時間 8,049 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,188 KB
testcase_01 AC 36 ms
52,696 KB
testcase_02 AC 35 ms
52,564 KB
testcase_03 AC 34 ms
52,208 KB
testcase_04 AC 35 ms
53,164 KB
testcase_05 AC 36 ms
52,752 KB
testcase_06 AC 942 ms
372,136 KB
testcase_07 AC 849 ms
371,780 KB
testcase_08 AC 158 ms
84,744 KB
testcase_09 AC 1,505 ms
318,632 KB
testcase_10 AC 740 ms
224,028 KB
testcase_11 AC 49 ms
62,392 KB
testcase_12 AC 61 ms
69,592 KB
testcase_13 AC 123 ms
91,400 KB
testcase_14 AC 252 ms
114,468 KB
testcase_15 AC 180 ms
93,388 KB
testcase_16 AC 133 ms
84,408 KB
testcase_17 AC 99 ms
79,480 KB
testcase_18 AC 37 ms
53,000 KB
testcase_19 AC 37 ms
52,760 KB
testcase_20 AC 65 ms
70,636 KB
testcase_21 AC 63 ms
70,772 KB
testcase_22 AC 37 ms
52,816 KB
testcase_23 AC 36 ms
52,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input=lambda :stdin.readline()[:-1]

h,w,n=map(int,input().split())
c=[]
for i in range(h):
  c.append(list(map(lambda x:int(x)-1,input().split())))

frm=[set() for i in range(n)]
dxdy=[(1,0),(0,1),(-1,0),(0,-1)]
for x in range(h):
  for y in range(w):
    for dx,dy in dxdy:
      nx,ny=x+dx,y+dy
      if 0<=nx<h and 0<=ny<w:
        if c[x][y]>c[nx][ny]:
          frm[c[x][y]].add(c[nx][ny])

color=[-1]*n
tmp=1
for i in range(n):
  ng=False
  for j in frm[i]:
    if tmp==color[j]:
      ng=True
  if ng:
    tmp+=1
  color[i]=tmp

print(tmp)
0