結果
問題 | No.1437 01 Sort |
ユーザー | tyawanmusi |
提出日時 | 2021-01-20 23:58:32 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 755 bytes |
コンパイル時間 | 380 ms |
コンパイル使用メモリ | 82,576 KB |
実行使用メモリ | 264,216 KB |
最終ジャッジ日時 | 2024-09-19 01:12:56 |
合計ジャッジ時間 | 4,470 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
57,472 KB |
testcase_01 | AC | 33 ms
51,712 KB |
testcase_02 | AC | 35 ms
51,840 KB |
testcase_03 | WA | - |
testcase_04 | AC | 33 ms
52,352 KB |
testcase_05 | AC | 35 ms
51,712 KB |
testcase_06 | AC | 36 ms
52,096 KB |
testcase_07 | AC | 35 ms
52,352 KB |
testcase_08 | AC | 38 ms
51,968 KB |
testcase_09 | AC | 32 ms
51,968 KB |
testcase_10 | AC | 34 ms
52,096 KB |
testcase_11 | AC | 35 ms
52,096 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) or (y[i] % n == 0): flag = 1 if ri == 0: ri += 1 ri += 1 ri -= flag ans = min(ans, anss+max(le, ri)*n) print(ans)