結果
問題 | No.2978 Lexicographically Smallest and Largest Subarray |
ユーザー |
![]() |
提出日時 | 2024-12-04 14:15:42 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 769 bytes |
コンパイル時間 | 369 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 93,656 KB |
平均クエリ数 | 1501.00 |
最終ジャッジ日時 | 2024-12-04 14:16:09 |
合計ジャッジ時間 | 23,593 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 57 |
ソースコード
N,Q = map(int,input().split())def check(l0,r0,l1,r1):print("?",l0,r0,l1,r1)x = int(input())if x == -1:exit()return x == 1L = list(range(1,N+1))while len(L) > 1:L2 = []while L:x = L.pop()if L:y = L.pop()if check(x,x,y,y):L2.append(x)else:L2.append(y)else:L2.append(x)L = L2ans = [L[0],L[0]]L = list(range(1,N+1))while len(L) > 1:L2 = []while L:x = L.pop()if L:y = L.pop()if check(x,N,y,N):L2.append(y)else:L2.append(x)else:L2.append(x)L = L2ans += [L[0],N]print("!", *ans)