結果

問題 No.2064 Smallest Sequence on Grid
ユーザー FromBooskaFromBooska
提出日時 2023-06-11 20:43:21
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,480 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 293,504 KB
最終ジャッジ日時 2025-01-03 04:12:45
合計ジャッジ時間 44,768 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
57,344 KB
testcase_01 AC 44 ms
208,896 KB
testcase_02 AC 45 ms
57,344 KB
testcase_03 AC 48 ms
208,640 KB
testcase_04 AC 51 ms
57,600 KB
testcase_05 AC 49 ms
57,472 KB
testcase_06 AC 43 ms
57,600 KB
testcase_07 AC 45 ms
208,640 KB
testcase_08 RE -
testcase_09 AC 53 ms
216,320 KB
testcase_10 AC 60 ms
65,920 KB
testcase_11 AC 59 ms
218,112 KB
testcase_12 AC 61 ms
67,200 KB
testcase_13 AC 64 ms
219,648 KB
testcase_14 AC 66 ms
69,120 KB
testcase_15 AC 63 ms
67,840 KB
testcase_16 AC 64 ms
62,848 KB
testcase_17 AC 537 ms
156,416 KB
testcase_18 AC 556 ms
156,672 KB
testcase_19 AC 546 ms
156,672 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 552 ms
156,800 KB
testcase_29 TLE -
testcase_30 AC 519 ms
293,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 辞書順最小だから前から決めていく
# 斜め線上にあるアルファベットで最小のものを全部残しその次のものからも最小を選ぶ

H, W = map(int, input().split())
S = []
for i in range(H):
    temp = input()
    S.append(temp)
    
#print(S)

if H == 1:
    ans = S[0]
    print(ans)
    exit()
elif W == 1:
    ans = ''
    for i in range(H):
        ans += S[i]
    print(ans)
    exit()

usable = [[0]*W for h in range(H)]
usable[0][0] = 1

ans = S[0][0]
for d in range(1, H+W-1):
    if d < W:
        start = (0, d)
        length = min(H, d+1)
    else: 
        start = (d - (W-1), W-1)
        length = H - (d - (W-1))
    #print('d', d, 'start', start, 'length', length)
    smallest = 'zz' #辞書順最悪ダミー
    smallest_index = []
    for i in range(length):
        if (start[0]+i-1 >= 0 and usable[start[0]+i-1][start[1]-i] == 1) or (start[1]-i-1 >=0 and usable[start[0]+i][start[1]-i-1] == 1):
            letter = S[start[0]+i][start[1]-i]
            if letter == smallest:
                smallest_index.append(start[0]+i)
            elif letter < smallest:
                smallest = letter
                smallest_index = []
                smallest_index.append(start[0]+i)
    #print(smallest, smallest_index)
    ans += smallest
    
    for i in range(length):
        if start[0]+i in smallest_index:
            usable[start[0]+i][start[1]-i] = 1
    #print(usable)
    #print()
            
print(ans)
0