結果

問題 No.507 ゲーム大会(チーム決め)
ユーザー aa
提出日時 2018-06-15 01:39:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,662 bytes
コンパイル時間 990 ms
コンパイル使用メモリ 101,500 KB
実行使用メモリ 4,896 KB
最終ジャッジ日時 2023-09-13 04:28:04
合計ジャッジ時間 2,504 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 WA -
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 47 ms
4,380 KB
testcase_08 WA -
testcase_09 AC 49 ms
4,616 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <climits>
#include <cmath>
#include <complex>
#include <map>
#include <set>
#include <vector>
#include <stack>
#include <queue>
#include <bitset>
#include <algorithm>
#include <numeric>
#include <functional>
#include <cassert>
#include <iomanip>
using namespace std;

#define Rep(b, e, i) for(int i = b; i <= e; i++)
#define Repr(e, b, i) for(int i = e; i >= b; i--)
#define rep(n, i) Rep(0, n-1, i)
#define repr(n, i) Repr(n-1, 0, i)
#define all(v) (v).begin(), (v).end()
#define pb(v) push_back(v)
#define uniq(v) (v).erase(unique(all(v)),(v).end())
#define bitcnt(x) __builtin_popcount(x)
#define fst first
#define snd second
#define Pqaz(T) priority_queue<T,vector<T>,greater<T>>
#define Pqza(T) priority_queue<T>
#define put(x) cout << x;
#define putsp(x) cout << x << ' ';
#define putln(x) cout << x << endl;
#define ENJYU std::ios::sync_with_stdio(false);std::cin.tie(0);

typedef long long ll;
typedef pair<ll, ll> llP;
typedef pair<int, int> intP;
typedef complex<double> comp;
typedef vector <int> vec;
typedef vector <ll> vecll;
typedef vector <double> vecd;
typedef vector <vec> mat;
typedef vector <vecll> matll;
typedef vector <vecd> matd;

//vector の中身を出力
template <class T>ostream &operator<<(ostream &o,const vector<T>&v)
{o<<"{";for(int i=0;i<(int)v.size();i++)o<<(i>0?", ":"")<<v[i];o<<"}";return o;}

const int MAX = 200000;
const double PI = 3.14159265358979323846;
const double EPS = 1e-12;
const int INF = 1<<29;
const ll INFL = 1e18;
const int MOD = 1000000007;

int dx4[4]={1,0,-1,0};
int dy4[4]={0,1,0,-1};
int dx8[8]={1,0,-1,1,-1,1,0,-1};
int dy8[8]={1,1,1,0,0,-1,-1,-1};

//********************************template END****************************************//



void solve(void){

	int N, M;
	cin >> N >> M;

	vecll as(N-1);

	ll A; cin >> A;

	rep(N-1, i) cin >> as[i];

	if (N == M*2)
	{
		cout << as[0] << endl;
		return;
	}

	sort(all(as));

	ll maxi = A + as[N-2];

	int cnt = 0;

	rep(M, i)
	{
		if (as[N-2-i-1] + as[N-2-i-2] > maxi)
		{
			cnt++;
			i -= 2;
		}
		else
		{
			break;
		}
	}

	if (cnt >= M)
	{
		cout << -1 << endl;
		return;
	}

	int ng = -1, ok = N-2;

	while (abs(ng-ok) > 1)
	{

		int mid = (ok+ng) / 2;

		ll score = as[mid] + A;

		vecll copy = as;
		copy[mid] = INFL;

		sort(all(copy));

		int cnt = 0;

		repr(N-2, i)
		{
			if (copy[i] + copy[i-1] > score)
			{
				cnt++;
				i--;
			}
			else
			{
				break;
			}
		}

		(cnt <= M-1 ? ok : ng) = mid;

		//cout << cnt << ' ' << mid << endl;

	}

	cout << as[ok] << endl;

}

int main(void){
	solve();
	//cout << "yui(*-v・)yui" << endl;
	return 0;
}
0