結果
問題 |
No.2978 Lexicographically Smallest and Largest Subarray
|
ユーザー |
![]() |
提出日時 | 2024-12-04 14:13:22 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 775 bytes |
コンパイル時間 | 361 ms |
コンパイル使用メモリ | 82,132 KB |
実行使用メモリ | 87,704 KB |
平均クエリ数 | 1000.00 |
最終ジャッジ日時 | 2024-12-04 14:13:43 |
合計ジャッジ時間 | 19,881 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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 == 1 L = 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 = L2 ans = [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-1,y,N-1): L2.append(y) else: L2.append(x) else: L2.append(x) L = L2 ans += [L[0],N-1] print("!", *ans)