結果

問題 No.2978 Lexicographically Smallest and Largest Subarray
ユーザー hato336hato336
提出日時 2024-12-02 12:36:21
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,133 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 144,232 KB
最終ジャッジ日時 2024-12-02 12:39:20
合計ジャッジ時間 177,848 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,random
n,q = map(int,input().split())
#p = [random.randint(0,10000) for i in range(1000)]
def query(a,b,c,d):
    #print('?',a+1,b+1,c+1,d+1,flush=True)
    x = int(input())
    #x = 1 if p[a:b+1] < p[c:d+1] else 0
    return x
a = collections.deque(range(n))
b = collections.deque()
c = collections.deque()
for i in range(n//2):
    x = a.popleft()
    y = a.popleft()
    z = query(x,x,y,y)
    
    if z == 1:
        c.append(x)
        b.append(y)
    else:
        c.append(y)
        b.append(x)
a = c + a
while len(a) > 1:
    c = collections.deque()
    while len(a) > 1:
        x = a.popleft()
        y = a.popleft()
        z = query(x,x,y,y)
        if z == 1:
            c.append(x)
        else:
            c.append(y)
    a = c
ans = [a[0],a[0]]
a = b
#print(a,b)
while len(a) > 1:
    c = collections.deque()
    while len(a) > 1:
        x = a.popleft()
        y = a.popleft()
        z = query(x,n-1,y,n-1)
        if z == 0:
            c.append(x)
        else:
            c.append(y)
    a = c
ans.extend([a[0],n-1])
#print(ans)
ans = list(map(lambda x:x+1,ans))
print('!',*ans)
#1 3 4 2
0