結果

問題 No.850 企業コンテスト2位
ユーザー nimon
提出日時 2019-08-31 00:53:43
言語 Nim
(2.2.0)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 1,223 bytes
コンパイル時間 3,338 ms
コンパイル使用メモリ 66,344 KB
実行使用メモリ 25,220 KB
平均クエリ数 200.11
最終ジャッジ日時 2024-07-16 18:06:22
合計ジャッジ時間 5,927 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #
プレゼンテーションモードにする

from strutils import parseInt
from sequtils import mapIt, newSeqWith
from algorithm import binarySearch
proc ask(x, y: int16): int16 =
echo "? ", x, " ", y
result = stdin.readLine.parseInt.int16
proc ans(x: int16) =
echo "! ", x
let N = stdin.readLine.parseInt
var histories = newSeqWith(10, newSeq[int16]())
histories[0] = (1..N).mapIt(it.int16)
for h in 0..<9:
if histories[h].len <= 1: break
for i in countup(1, histories[h].high, 2):
histories[h + 1].add(ask(histories[h][i - 1], histories[h][i]))
if histories[h].len mod 2 == 1:
histories[h + 1].add(histories[h][^1])
var
results = newSeq[int16]()
max: int16
for h in countdown(9, 0):
if histories[h].len > 1:
let i = histories[h].binarySearch(max)
if i mod 2 == 0:
if i + 1 < histories[h].len: results.add(histories[h][i + 1])
else:
if i - 1 >= 0: results.add(histories[h][i - 1])
elif histories[h].len == 1:
max = histories[h][0]
continue
else:
continue
var next = newSeq[int16]()
while results.len > 1:
next = @[]
for i in countup(1, results.high, 2):
next.add(ask(results[i - 1], results[i]))
if results.len mod 2 == 1:
next.add(results[^1])
results = next
ans(results[0])
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0