結果

問題 No.707 書道
ユーザー 💕💖💞💕💖💞
提出日時 2018-08-03 00:42:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 917 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,376 KB
最終ジャッジ日時 2024-09-19 17:17:12
合計ジャッジ時間 8,186 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 505 ms
44,252 KB
testcase_01 AC 509 ms
44,128 KB
testcase_02 AC 564 ms
44,376 KB
testcase_03 AC 508 ms
44,256 KB
testcase_04 RE -
testcase_05 AC 658 ms
44,120 KB
testcase_06 AC 735 ms
44,136 KB
testcase_07 AC 810 ms
44,124 KB
testcase_08 AC 509 ms
43,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
import math
(height, width) = map(int, input().split())
b = np.zeros((height+2, width+2))
for h in range(height):
  for w, ch in enumerate(input()):
    if ch == '1':
      b[h+1,w+1] = 1.0
key_l2 = {}
for ww in [0, width+1]:
  for h in range(1, height+1):
    w = ww
    key = (h,w)
    for h2 in range(1, height+1):
      for w2 in range(1, width+1):
        if b[h2, w2] != 1.0: 
          continue
        if key_l2.get(key) is None:
          key_l2[key] = 0.0
        key_l2[key] += math.sqrt( (h - h2)**2 + (w - w2)**2 )
for hh in [0, height+1]:
  for w in range(1, width+1):
    h = hh
    key = (h,w)
    for h2 in range(1, height+1):
      for w2 in range(1, width+1):
        if b[h2, w2] != 1.0: 
          continue
        if key_l2.get(key) is None:
          key_l2[key] = 0.0
        key_l2[key] += math.sqrt( (h - h2)**2 + (w - w2)**2 )
print(min([f for key, f in key_l2.items()]))
0