結果

問題 No.507 ゲーム大会(チーム決め)
ユーザー t8m8⛄️t8m8⛄️
提出日時 2017-04-28 02:08:09
言語 Nim
(2.0.2)
結果
AC  
実行時間 68 ms / 3,000 ms
コード長 737 bytes
コンパイル時間 3,325 ms
コンパイル使用メモリ 66,268 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-06-30 01:10:06
合計ジャッジ時間 4,941 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 68 ms
6,144 KB
testcase_08 AC 66 ms
6,016 KB
testcase_09 AC 42 ms
6,016 KB
testcase_10 AC 42 ms
6,912 KB
testcase_11 AC 53 ms
6,016 KB
testcase_12 AC 42 ms
6,016 KB
testcase_13 AC 67 ms
6,016 KB
testcase_14 AC 65 ms
6,016 KB
testcase_15 AC 66 ms
6,016 KB
testcase_16 AC 64 ms
6,144 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import strutils, sequtils, algorithm

proc f(a: seq[int]; x, mid, n, m: int): bool =
  var
    val = x + a[mid]
    b = concat(a[0..mid-1], a[mid+1..n-2])
    (l, r) = (0, n-3)
    cnt = 0
  
  while l < r:
    var p = b[l] + b[r]
    if p > val:
      cnt.inc
      l.inc
      r.dec
    else:
      l.inc
    
  result = cnt < m

when isMainModule:
  var
    input = stdin.readline.split.map(parseint)
    (n, m) = (input[0], input[1])
    a = newSeq[int]()
    x = stdin.readline.parseint
  for i in 0..n-2:
    a.add stdin.readline.parseint
  a.sort(system.cmp)

  var (l, r) = (-1, n-2)
  while r - l > 1:
    var mid = (l + r) div 2
    if f(a, x, mid, n, m): r = mid
    else: l = mid

  echo if f(a, x, r, n, m): $a[r] else: "-1"
0