結果

問題 No.2719 Equal Inner Products in Permutation
ユーザー flygonflygon
提出日時 2024-04-06 14:12:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 798 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 131,392 KB
最終ジャッジ日時 2024-10-01 03:50:20
合計ジャッジ時間 7,752 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
55,820 KB
testcase_01 AC 41 ms
56,176 KB
testcase_02 WA -
testcase_03 AC 44 ms
55,840 KB
testcase_04 AC 47 ms
54,872 KB
testcase_05 AC 46 ms
55,256 KB
testcase_06 AC 43 ms
56,272 KB
testcase_07 AC 42 ms
55,244 KB
testcase_08 AC 46 ms
55,216 KB
testcase_09 AC 43 ms
55,976 KB
testcase_10 AC 57 ms
68,676 KB
testcase_11 AC 58 ms
67,576 KB
testcase_12 AC 56 ms
68,224 KB
testcase_13 AC 57 ms
67,792 KB
testcase_14 AC 57 ms
68,028 KB
testcase_15 AC 151 ms
131,392 KB
testcase_16 AC 161 ms
128,888 KB
testcase_17 AC 128 ms
114,868 KB
testcase_18 AC 164 ms
129,052 KB
testcase_19 AC 145 ms
126,800 KB
testcase_20 AC 129 ms
110,888 KB
testcase_21 AC 168 ms
129,856 KB
testcase_22 AC 140 ms
120,204 KB
testcase_23 AC 138 ms
116,220 KB
testcase_24 AC 123 ms
110,228 KB
testcase_25 AC 166 ms
130,168 KB
testcase_26 AC 174 ms
129,820 KB
testcase_27 AC 171 ms
130,032 KB
testcase_28 AC 169 ms
129,972 KB
testcase_29 AC 167 ms
129,904 KB
testcase_30 AC 166 ms
130,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n = int(input())
if n == 1 or n == 2:
    print(-1)
    exit()

a = []
b = [i+1 for i in range(n)]
c = []
for i in range(n):
    x,y = n+2*i+1, n+2*i+2
    a.append(x)
    c.append(y)


if n % 4 == 1 or n % 4 == 2:
    a[-1], c[-2] = c[-2], a[-1]
    g = (n*(n+1)//2 + 2*n - 1)//2
else:
    g = (n*(n+1)//2)//2
now = 0
for i in range(n)[::-1]:
    x,y = a[i],c[i]
    if abs(b[i]*(a[i]-c[i]))+now <= g:
        now += abs(b[i]*(a[i]-c[i]))
        a[i] = min(x,y)
        c[i] = max(x,y)
    else:
        a[i] = max(x,y)
        c[i] = min(x,y)
ans = a+b+c

print(*ans)



0