結果

問題 No.507 ゲーム大会(チーム決め)
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2017-06-27 18:20:21
言語 Ruby
(3.3.0)
結果
AC  
実行時間 318 ms / 3,000 ms
コード長 640 bytes
コンパイル時間 38 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-10-04 11:40:13
合計ジャッジ時間 4,442 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
12,032 KB
testcase_01 AC 79 ms
12,032 KB
testcase_02 AC 78 ms
12,288 KB
testcase_03 AC 75 ms
12,032 KB
testcase_04 AC 73 ms
12,032 KB
testcase_05 AC 74 ms
12,032 KB
testcase_06 AC 73 ms
12,032 KB
testcase_07 AC 305 ms
14,080 KB
testcase_08 AC 250 ms
13,952 KB
testcase_09 AC 318 ms
13,824 KB
testcase_10 AC 274 ms
14,080 KB
testcase_11 AC 252 ms
13,952 KB
testcase_12 AC 310 ms
13,952 KB
testcase_13 AC 251 ms
13,824 KB
testcase_14 AC 251 ms
13,952 KB
testcase_15 AC 254 ms
13,824 KB
testcase_16 AC 259 ms
13,952 KB
testcase_17 AC 73 ms
12,032 KB
testcase_18 AC 75 ms
12,160 KB
testcase_19 AC 73 ms
12,032 KB
testcase_20 AC 75 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:33: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

def rank(score, pair, players)
    big = players.size - 1
    count = 0
    players.each_index do |small|
        break if small >= big
        
        if big == pair 
            big -= 1
            redo
        elsif small == pair
            next
        end
        
        oscore = players[big] + players[small]
        if oscore > score
            count += 1
            big -= 1
        end
    end
    count
end

n, M = gets.split.map(&:to_i)
N = n.times.map{ gets.to_i }
K = N.shift
N.sort!

min_pair = (0 .. n - 2).bsearch do |i|
    rank(K + N[i], i, N) < M
end

if min_pair.nil?
    puts -1
else
    puts N[min_pair]
end



0