結果

問題 No.282 おもりと天秤(2)
ユーザー convexineqconvexineq
提出日時 2021-02-24 05:20:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,049 ms / 5,000 ms
コード長 1,449 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 96,552 KB
平均クエリ数 221.33
最終ジャッジ日時 2024-07-17 02:57:59
合計ジャッジ時間 20,035 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
72,156 KB
testcase_01 AC 102 ms
79,544 KB
testcase_02 AC 70 ms
78,504 KB
testcase_03 AC 68 ms
78,084 KB
testcase_04 AC 64 ms
73,296 KB
testcase_05 AC 73 ms
79,004 KB
testcase_06 AC 80 ms
82,208 KB
testcase_07 AC 64 ms
72,384 KB
testcase_08 AC 81 ms
81,972 KB
testcase_09 AC 61 ms
71,288 KB
testcase_10 AC 530 ms
94,540 KB
testcase_11 AC 1,811 ms
95,912 KB
testcase_12 AC 583 ms
94,216 KB
testcase_13 AC 891 ms
95,896 KB
testcase_14 AC 1,561 ms
95,884 KB
testcase_15 AC 1,906 ms
95,840 KB
testcase_16 AC 158 ms
88,756 KB
testcase_17 AC 841 ms
94,764 KB
testcase_18 AC 1,352 ms
95,184 KB
testcase_19 AC 1,352 ms
95,300 KB
testcase_20 AC 2,044 ms
95,840 KB
testcase_21 AC 2,010 ms
96,552 KB
testcase_22 AC 2,049 ms
95,728 KB
testcase_23 AC 63 ms
71,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def ask():
    print("? " + " ".join(map(str,lst)))
    sys.stdout.flush()
    res = get() if DEBUG else input()
    return res.split()

def get():
    def f(x): return "<" if x==1 else ">" if x==-1 else "="
    #print(lst)
    res = [0]*n
    for i in range(n):
        v,w = order.index(lst[2*i]), order.index(lst[2*i+1])
        if v < w: res[i] = 1
        elif v==w: res[i] = 0
        elif v > w: res[i] = -1
    ans = " ".join(map(f,res))
    print(ans)
    return ans

import sys
n = int(input())
p = n%2
lst = [1-p,2-p]
for i in range((n+1)//2-1):
    lst += [3+i-p,n-i]
lst += [0]*(n-p)
assert len(lst) == 2*n
DEBUG = 0
order = list(range(1,n+1))
from random import shuffle
shuffle(order)
order.insert(0,0)

g = [[-5]*n for _ in range(n)]
for i in range(n+p):
    s = ask()
    # 行列に記録
    for i in range((n+p)//2):
        v,w = lst[2*i]-1,lst[2*i+1]-1
        if v==-1 or w==-1: continue
        if s[i] != "=":
            g[v][w] = 1 if s[i] == ">" else -1
            g[w][v] = 1 if s[i] == "<" else -1
        else:
            g[v][w] = g[w][v] = 1
    # サイクリックに移動        
    for j in range(1,n+p):
        lst[j] += 1
        if lst[j] > n: lst[j] = 2-p

#print(g)
ans = list(range(n))[::-1]
for i in range(n):
    for j in range(n-1-i):
        if g[ans[j]][ans[j+1]] == 1:
            ans[j],ans[j+1] = ans[j+1],ans[j]
for i in range(n): ans[i] += 1
#print(order)
print("! " + " ".join(map(str,ans)))
0