# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
862421 | 2023-10-18T08:09:12 Z | AtabayRajabli | Table Tennis (info1cup20_tabletennis) | C++17 | 3000 ms | 5536 KB |
#include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> // author : AtabeyR #define pb push_back #define pii pair<int, int> #define pll pair<ll, ll> #define all(v) v.begin(), v.end() #define OPT ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); #define sec second #define fi first #define int ll #define print(k) cerr << "Ans : "; cout << k << endl; #define ins insert #define bpc __builtin_popcountll #define skip continue #define endll '\n' #define gcd(a, b) __gcd(a, b) #define lcm(a, b) a*b / (__gcd(a, b)) typedef long long ll; typedef unsigned long long ull; const int oo = 0x3F3F3F3F; const int ooo = 0x3F3F3F3F3F3F3F3FLL; const int mod = 998244353; const int sz = 2e5; using namespace std; using namespace __gnu_pbds; template<class T> using ordered_set = tree<T, null_type,less<T>, rb_tree_tag,tree_order_statistics_node_update>; void open(string s) { freopen((s + ".in").c_str(), "r", stdin); freopen((s + ".out").c_str(), "w", stdout); } int n, m, k, a[sz]; bool f(int s, int e, int rem) { int ls = s, rs = e; s++; e--; vector<int> l, r; l.pb(a[s-1]); r.pb(a[e+1]); while(s <= e && rem >= 0) { if(a[s] - a[ls] < a[rs] - a[e]) { rem--; s++; } if(a[s] - a[ls] > a[rs] - a[e]) { rem--; e--; } if(a[s] - a[ls] == a[rs] - a[e]) { ls = s; rs = e; l.pb(a[ls]); r.pb(a[rs]); s++; e--; } } if(rem)return 0; for(int i : l)cout << i << " "; for(auto it = r.rbegin(); it != r.rend(); it++)cout << *it << " "; return 1; } void solve() { cin >> n >> k; for(int i = 1; i<=n+k; i++)cin >> a[i]; for(int i = 0; i<=k; i++) { for(int j = 0; j<=i; j++) { if(!f(j+1, n+k-(i-j), k-i))skip; else return; } } } int32_t main() { // open("i"); OPT int t = 1; // cin >> t; for(int i = 1; i<=t; i++) solve(); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 348 KB | Output is correct |
2 | Correct | 0 ms | 348 KB | Output is correct |
3 | Correct | 1 ms | 348 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 1116 KB | Output is correct |
2 | Correct | 26 ms | 4548 KB | Output is correct |
3 | Correct | 21 ms | 4296 KB | Output is correct |
4 | Correct | 25 ms | 4672 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 21 ms | 4296 KB | Output is correct |
2 | Correct | 21 ms | 4412 KB | Output is correct |
3 | Correct | 22 ms | 4804 KB | Output is correct |
4 | Correct | 21 ms | 4296 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 348 KB | Output is correct |
2 | Correct | 1 ms | 348 KB | Output is correct |
3 | Correct | 1 ms | 348 KB | Output is correct |
4 | Correct | 1 ms | 348 KB | Output is correct |
5 | Correct | 1 ms | 348 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Correct | 0 ms | 348 KB | Output is correct |
3 | Correct | 0 ms | 360 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Correct | 1 ms | 348 KB | Output is correct |
3 | Correct | 1 ms | 348 KB | Output is correct |
4 | Correct | 1 ms | 348 KB | Output is correct |
5 | Correct | 1 ms | 348 KB | Output is correct |
6 | Correct | 1 ms | 344 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Correct | 27 ms | 4496 KB | Output is correct |
3 | Correct | 24 ms | 4284 KB | Output is correct |
4 | Correct | 21 ms | 4296 KB | Output is correct |
5 | Correct | 21 ms | 4448 KB | Output is correct |
6 | Correct | 111 ms | 5536 KB | Output is correct |
7 | Correct | 22 ms | 4420 KB | Output is correct |
8 | Correct | 25 ms | 4648 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 70 ms | 452 KB | Output is correct |
2 | Correct | 42 ms | 4284 KB | Output is correct |
3 | Correct | 61 ms | 4288 KB | Output is correct |
4 | Correct | 41 ms | 4288 KB | Output is correct |
5 | Correct | 29 ms | 4288 KB | Output is correct |
6 | Execution timed out | 3045 ms | 4672 KB | Time limit exceeded |
7 | Halted | 0 ms | 0 KB | - |