結果
問題 | No.1437 01 Sort |
ユーザー | tyawanmusi |
提出日時 | 2021-01-20 23:53:13 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 734 bytes |
コンパイル時間 | 191 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 261,632 KB |
最終ジャッジ日時 | 2024-09-19 01:12:30 |
合計ジャッジ時間 | 4,420 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
57,856 KB |
testcase_01 | AC | 40 ms
52,096 KB |
testcase_02 | AC | 41 ms
52,224 KB |
testcase_03 | WA | - |
testcase_04 | AC | 40 ms
51,968 KB |
testcase_05 | AC | 41 ms
51,712 KB |
testcase_06 | AC | 40 ms
52,224 KB |
testcase_07 | AC | 40 ms
51,968 KB |
testcase_08 | AC | 39 ms
51,712 KB |
testcase_09 | AC | 39 ms
51,712 KB |
testcase_10 | AC | 43 ms
52,224 KB |
testcase_11 | AC | 41 ms
51,968 KB |
testcase_12 | WA | - |
testcase_13 | TLE | - |
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 | -- | - |
ソースコード
# 計算量 O(N^3) n = int(input()) s = input() co = s.count("1") ans = 10**15 a = [] for i in range(n): if s[i] == "1": a += [i, i+n, i+n+n, i+n+n+n] a.sort() for l in range(n): x = list(range(l+n, l+n+co)) anss = (n-(l+co)) % n sp_l = (l+co) % n sp_r = (0 if sp_l == 0 else n) for ll in range(co+co+co): y = a[ll:ll+co] flag = 0 le = 0 ri = 0 for i in range(co): if y[i] <= x[i]: if sp_l <= y[i] % n < sp_r: le = max(le, x[i]-y[i]-1) else: le = max(le, x[i]-y[i]) else: if sp_l <= y[i] % n <= sp_r: flag = 1 if ri == 0: ri += 1 ri += 1 ri -= flag ans = min(ans, anss+max(le, ri)*n) print(ans)