結果

問題 No.1437 01 Sort
ユーザー tyawanmusityawanmusi
提出日時 2021-01-20 17:48:59
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 445 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 851,828 KB
最終ジャッジ日時 2024-05-04 10:35:53
合計ジャッジ時間 5,354 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,632 KB
testcase_01 AC 44 ms
53,376 KB
testcase_02 AC 39 ms
53,504 KB
testcase_03 AC 46 ms
53,376 KB
testcase_04 AC 39 ms
53,632 KB
testcase_05 AC 40 ms
53,376 KB
testcase_06 AC 40 ms
53,504 KB
testcase_07 AC 41 ms
53,504 KB
testcase_08 AC 41 ms
53,248 KB
testcase_09 AC 41 ms
53,376 KB
testcase_10 AC 41 ms
53,760 KB
testcase_11 AC 40 ms
53,632 KB
testcase_12 AC 182 ms
119,528 KB
testcase_13 MLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 計算量 O(いっぱい)

from collections import defaultdict, deque

n = int(input())
s = input()
cost = defaultdict(int)
cost[s] = 0
goal = "".join(sorted(list(s)))
que = deque([s])
while que:
  t = que.popleft()
  if t == goal:
    exit(print(cost[t]))
  t1 = t[-1] + t[:-1]
  t2 = t[0] + t[-1] + t[1:-1]
  if t1 not in cost:
    cost[t1] = cost[t] + 1
    que.append(t1)
  if t2 not in cost:
    cost[t2] = cost[t] + 1
    que.append(t2)
0