# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
387554 | casperwang | Table Tennis (info1cup20_tabletennis) | C++14 | 3080 ms | 2584 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define debug(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 pary(T L, T R) { while (L != R) cerr << *L << " \n"[++L==R]; }
const int MAXN = 150000;
const int MAXK = 400;
int N, K;
int a[MAXN+MAXK+1];
bool flag[MAXN+MAXK+1];
signed main() {
ios_base::sync_with_stdio(0), cin.tie(0);
cin >> N >> K;
for (int i = 1; i <= N+K; i++) {
cin >> a[i];
}
for (int L = 1; L <= K+1; L++) {
int cnt;
for (int R = N; R <= N+K; R++) {
if (R-L+1 < N) continue;
fill(flag+1, flag+1+N+K, 0);
int S = a[L] + a[R];
cnt = 1;
flag[L] = flag[R] = true;
int nowR = R-1;
for (int i = L+1; i < nowR; i++) {
while (a[i] + a[nowR] > S && nowR > i)
nowR--;
if (a[i] + a[nowR] == S) {
flag[i] = flag[nowR] = true;
cnt++;
nowR--;
}
}
if (cnt == N / 2) break;
}
if (cnt == N / 2) break;
}
for (int i = 1; i <= N+K; i++) {
if (flag[i]) cout << a[i] << ' ';
}
cout << '\n';
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |