結果
問題 | No.2978 Lexicographically Smallest and Largest Subarray |
ユーザー |
![]() |
提出日時 | 2024-12-04 14:58:36 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 360 ms / 2,000 ms |
コード長 | 1,047 bytes |
コンパイル時間 | 308 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 91,496 KB |
平均クエリ数 | 1499.00 |
最終ジャッジ日時 | 2024-12-04 14:59:00 |
合計ジャッジ時間 | 23,961 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 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)) L2 = [] L3 = [] while L: x = L.pop() if L: y = L.pop() if check(x, N, y, N): L2.append(x) L3.append(y) else: L2.append(y) L3.append(x) else: L2.append(x) L3.append(x) L = L2 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 = L3 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 = L2 ans += [L[0], N] print("!", *ans)