제출 #387552

#제출 시각아이디문제언어결과실행 시간메모리
387552Kevin_Zhang_TWTable Tennis (info1cup20_tabletennis)C++17
100 / 100
331 ms33140 KiB
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define pb emplace_back
#define AI(i) begin(i), end(i)
template<class T> bool chmin(T &a, T b) { return b < a && (a = b, true); }
template<class T> bool chmax(T &a, T b) { return a < b && (a = b, true); }
#ifdef KEV
#define DE(args...) kout("[ " + string(#args) + " ] = ", args)
void kout() { cerr << endl; }
template<class T, class ...U> void kout(T a, U ...b) { cerr << a << ' ', kout(b...); }
template<class T> void debug(T l, T r) { while (l != r) cerr << *l << " \n"[next(l)==r], ++l; }
#else
#define DE(...) 0
#define debug(...) 0
#endif

const int MAX_N = 200005;

int n, k, a[MAX_N], m;

void check(int v) {
	vector<int> ok;

	for (int i = 0, j = m-1;i < j;++i) {
		while (i < j && a[i] + a[j] > v) --j;
		if (i == j) break;
		if (a[i] + a[j] == v) {
			ok.pb(a[i]), ok.pb(a[j]);
			--j;
		}
	}

	if (ok.size() >= n) {
		ok.resize(n);

		sort(AI(ok));

		for (int i = 0;i < n;++i)
			cout << ok[i] << " \n"[i+1==n];

		exit(0);
	}
}
int32_t main() {
	ios_base::sync_with_stdio(0), cin.tie(0);
	cin >> n >> k;

	m = n + k;

	for (int i = 0;i < m;++i)
		cin >> a[i];

	int need = k;

	unordered_map<int,int> cnt;

	if (4 * k > m) {
		need = n / 2;
		for (int i = 0;i < m;++i)
			for (int j = i + 1;j < m;++j)
				++cnt[ a[i] + a[j] ];
	}
	else {
		for (int i = 0;i < 2 * k;++i)
			for (int j = 1;j <= 2 * k;++j) {
				++cnt[ a[i] + a[m-j] ];
			}
	}

	for (auto [v, c] : cnt)
		if (c >= need) 
			check(v);
}

컴파일 시 표준 에러 (stderr) 메시지

tabletennis.cpp: In function 'void check(int)':
tabletennis.cpp:34:16: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   34 |  if (ok.size() >= n) {
      |      ~~~~~~~~~~^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...