Task: | Chair Game |
Sender: | Theodor Beskow |
Submission time: | 2024-03-17 15:23:49 +0200 |
Language: | C++ (C++17) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | TIME LIMIT EXCEEDED | 0 |
#2 | TIME LIMIT EXCEEDED | 0 |
#3 | TIME LIMIT EXCEEDED | 0 |
#4 | TIME LIMIT EXCEEDED | 0 |
#5 | TIME LIMIT EXCEEDED | 0 |
#6 | TIME LIMIT EXCEEDED | 0 |
#7 | TIME LIMIT EXCEEDED | 0 |
#8 | TIME LIMIT EXCEEDED | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | TIME LIMIT EXCEEDED | -- | 1, 7, 8 | details |
#2 | TIME LIMIT EXCEEDED | -- | 1, 7, 8 | details |
#3 | TIME LIMIT EXCEEDED | -- | 1, 7, 8 | details |
#4 | TIME LIMIT EXCEEDED | -- | 1, 7, 8 | details |
#5 | TIME LIMIT EXCEEDED | -- | 1, 7, 8 | details |
#6 | TIME LIMIT EXCEEDED | -- | 7, 8 | details |
#7 | TIME LIMIT EXCEEDED | -- | 7, 8 | details |
#8 | TIME LIMIT EXCEEDED | -- | 2, 8 | details |
#9 | TIME LIMIT EXCEEDED | -- | 3, 4, 5, 6, 8 | details |
#10 | ACCEPTED | 0.01 s | 3, 4, 5, 6, 8 | details |
#11 | TIME LIMIT EXCEEDED | -- | 3, 4, 5, 6, 8 | details |
#12 | ACCEPTED | 0.02 s | 3, 4, 5, 6, 8 | details |
#13 | TIME LIMIT EXCEEDED | -- | 4, 5, 6, 7, 8 | details |
#14 | TIME LIMIT EXCEEDED | -- | 4, 5, 6, 8 | details |
#15 | TIME LIMIT EXCEEDED | -- | 4, 5, 6, 8 | details |
#16 | TIME LIMIT EXCEEDED | -- | 4, 5, 6, 8 | details |
#17 | TIME LIMIT EXCEEDED | -- | 5, 6, 7, 8 | details |
#18 | TIME LIMIT EXCEEDED | -- | 5, 6, 8 | details |
#19 | TIME LIMIT EXCEEDED | -- | 5, 6, 8 | details |
#20 | TIME LIMIT EXCEEDED | -- | 5, 6, 8 | details |
#21 | TIME LIMIT EXCEEDED | -- | 1, 6, 7, 8 | details |
#22 | TIME LIMIT EXCEEDED | -- | 6, 7, 8 | details |
#23 | TIME LIMIT EXCEEDED | -- | 6, 8 | details |
#24 | TIME LIMIT EXCEEDED | -- | 6, 8 | details |
#25 | TIME LIMIT EXCEEDED | -- | 8 | details |
#26 | TIME LIMIT EXCEEDED | -- | 8 | details |
#27 | ACCEPTED | 0.01 s | 3, 4, 5, 6, 8 | details |
#28 | ACCEPTED | 0.01 s | 8 | details |
#29 | TIME LIMIT EXCEEDED | -- | 8 | details |
#30 | TIME LIMIT EXCEEDED | -- | 8 | details |
Code
#include <bits/stdc++.h>using namespace std;// #undef _GLIBCXX_DEBUG // disable run-time bound checking, etc// #pragma GCC optimize("Ofast,inline") // Ofast = O3,fast-math,allow-store-data-races,no-protect-parens// #pragma GCC optimize ("unroll-loops")// #pragma GCC target("bmi,bmi2,lzcnt,popcnt") // bit manipulation// #pragma GCC target("movbe") // byte swap// #pragma GCC target("aes,pclmul,rdrnd") // encryption// #pragma GCC target("avx,avx2,f16c,fma,sse3,ssse3,sse4.1,sse4.2") // SIMD// #include <bits/extc++.h>// using namespace __gnu_pbds;// template<class T>using ordered_set = tree<T, null_type, less<T>, rb_tree_tag,tree_order_statistics_node_update>;// template<class T>using ordered_multiset = tree<T, null_type, less_equal<T>, rb_tree_tag,tree_order_statistics_node_update>;#define ll long long#define INF ((ll)(1e9+7))#define fo(i, n) for(ll i=0;i<((ll)n);i++)#define deb(x) cout << #x << " = " << (x) << endl;#define deb2(x, y) cout << #x << " = " << (x) << ", " << #y << " = " << (y) << endl#define pb push_back#define mp make_pair#define F first#define S second#define LSOne(S) ((S) & (-S))#define all(x) x.begin(), x.end()#define rall(x) x.rbegin(), x.rend()inline int readint(){ int v = 0; char c; while((c = getchar()) != EOF && c != ' ' && c != '\n'){ v *= 10; v += c - '0'; } return v; }inline int readintsigned() { int v = 0; int sign = 1; char c = getchar(); if (c == '-') { sign = -1; } else { v += c - '0'; } while ((c = getchar()) != EOF && c != ' ' && c != '\n') { v *= 10; v += c - '0'; } return v * sign; }inline string readstring() { string s; char c; while ((c = getchar()) != EOF && c != '\n' && c != ' ') { s.push_back(c); } return s; }template <class result_t=std::chrono::milliseconds,class clock_t=std::chrono::steady_clock,class duration_t = std::chrono::milliseconds>auto since(std::chrono::time_point<clock_t, duration_t> const& start){return std::chrono::duration_cast<result_t>(clock_t::now() - start);}typedef pair<int, int> pii;typedef pair<ll, ll> pl;typedef vector<int> vi;typedef vector<ll> vl;typedef vector<pii> vpii;typedef vector<pl> vpl;typedef vector<vi> vvi;typedef vector<vl> vvl;typedef vector<vpii> vvpii;typedef vector<vpl> vvpl;int main(){cin.tie(0)->sync_with_stdio(0);mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count());ll t;cin >> t;while(t--){ll n;cin >> n;vector<ll> v(n, 0);ll currentSum = 0;fo(i, n){cin >> v[i];// currentSum+=v[i];}if(currentSum % n != 0){cout << "NO\n";continue;}fo(i, n) v[i]-=currentSum/n;// shuffle(v.begin(), v.end(), rnd);sort(all(v));vl seen(n, 0), at(n, 0);fo(i, n){int pos = i;int val = v[i];// deb2(pos, val);// fo(j, n) cout << at[j]+currentSum/n << " ";// cout << endl;// fo(j, n) cout << seen[j] << " ";// cout << endl;while(seen[(pos+n+val)%n]){fo(j, i+1){if(j == pos) continue;if(!seen[(at[j]+n+pos)%n]){swap(seen[(at[j]+n+pos)%n], seen[(at[j]+n+j)%n]);swap(at[pos], at[j]);pos = j;break;}}}seen[(pos+val+n)%n] = 1;// deb2(pos, val);at[pos] = val;}cout << "YES\n";fo(i, n) cout << at[i] + currentSum/n << " ";cout << "\n";}return 0;}
Test details
Test 1
Group: 1, 7, 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
637 1 1 2 1 1 ... |
correct output |
---|
YES 1 YES 1 1 YES ... |
user output |
---|
(empty) |
Test 2
Group: 1, 7, 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
246 7 1 1 1 1 1 1 1 7 1 1 2 1 1 7 1 ... |
correct output |
---|
YES 1 1 1 1 1 1 1 YES 1 1 1 1 2 7 1 YES ... |
user output |
---|
(empty) |
Test 3
Group: 1, 7, 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
810 8 1 1 1 1 1 1 1 1 8 1 1 1 8 1 1 2 1 ... |
correct output |
---|
YES 1 1 1 1 1 1 1 1 YES 1 1 2 8 1 1 1 1 YES ... |
user output |
---|
(empty) |
Test 4
Group: 1, 7, 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 8 8 8 5 2 8 7 6 5 8 6 5 2 2 8 2 1 6 ... |
correct output |
---|
NO YES 8 2 2 6 2 5 1 6 NO NO ... |
user output |
---|
(empty) |
Test 5
Group: 1, 7, 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 8 2 1 7 7 2 3 8 2 8 4 1 5 4 7 3 5 3 ... |
correct output |
---|
YES 7 2 2 7 1 3 8 2 YES 4 4 7 3 3 5 5 1 YES ... |
user output |
---|
(empty) |
Test 6
Group: 7, 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 16 15 16 6 4 14 2 1 6 2 16 10 2 9... |
correct output |
---|
NO NO NO NO NO ... |
user output |
---|
(empty) |
Test 7
Group: 7, 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 16 2 4 13 6 8 16 12 8 16 5 9 5 9 ... |
correct output |
---|
YES 13 5 2 8 12 2 8 5 16 16 9 6 9 ... |
user output |
---|
(empty) |
Test 8
Group: 2, 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 1 1 2 1 2 ... |
correct output |
---|
YES 1 NO YES 3 1 2 ... |
user output |
---|
(empty) |
Test 9
Group: 3, 4, 5, 6, 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
988 1 1 2 1 1 ... |
correct output |
---|
YES 1 YES 1 1 YES ... |
user output |
---|
(empty) |
Test 10
Group: 3, 4, 5, 6, 8
Verdict: ACCEPTED
input |
---|
199 1 1 2 1 1 ... |
correct output |
---|
YES 1 YES 1 1 YES ... |
user output |
---|
YES 1 YES 1 1 YES ... Truncated |
Test 11
Group: 3, 4, 5, 6, 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 100 1 1 1 2 1 1 2 2 1 1 1 1 1 2 1 ... |
correct output |
---|
NO NO NO NO NO ... |
user output |
---|
(empty) |
Test 12
Group: 3, 4, 5, 6, 8
Verdict: ACCEPTED
input |
---|
1000 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
YES 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
user output |
---|
YES 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... Truncated |
Test 13
Group: 4, 5, 6, 7, 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
963 1 1 2 1 1 ... |
correct output |
---|
YES 1 YES 1 1 YES ... |
user output |
---|
(empty) |
Test 14
Group: 4, 5, 6, 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
979 1 1 2 1 1 ... |
correct output |
---|
YES 1 YES 1 1 YES ... |
user output |
---|
(empty) |
Test 15
Group: 4, 5, 6, 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 100 3 3 1 2 1 1 2 3 1 3 2 1 1 3 1 ... |
correct output |
---|
NO NO NO NO NO ... |
user output |
---|
(empty) |
Test 16
Group: 4, 5, 6, 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 100 1 2 2 2 2 1 1 1 2 3 1 1 3 2 1 ... |
correct output |
---|
YES 2 2 2 3 1 2 3 1 2 3 1 3 1 3 1 ... |
user output |
---|
(empty) |
Test 17
Group: 5, 6, 7, 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
980 1 1 2 1 1 ... |
correct output |
---|
YES 1 YES 1 1 YES ... |
user output |
---|
(empty) |
Test 18
Group: 5, 6, 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
947 1 1 2 1 1 ... |
correct output |
---|
YES 1 YES 1 1 YES ... |
user output |
---|
(empty) |
Test 19
Group: 5, 6, 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 100 1 2 4 2 1 3 1 2 2 3 1 1 3 1 4 ... |
correct output |
---|
NO NO NO NO NO ... |
user output |
---|
(empty) |
Test 20
Group: 5, 6, 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 100 3 4 4 4 4 4 4 3 3 3 4 4 2 3 3 ... |
correct output |
---|
YES 4 2 4 4 1 3 4 2 4 2 3 4 2 4 4 ... |
user output |
---|
(empty) |
Test 21
Group: 1, 6, 7, 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
715 1 1 2 1 1 ... |
correct output |
---|
YES 1 YES 1 1 YES ... |
user output |
---|
(empty) |
Test 22
Group: 6, 7, 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
843 1 1 2 1 1 ... |
correct output |
---|
YES 1 YES 1 1 YES ... |
user output |
---|
(empty) |
Test 23
Group: 6, 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 100 3 4 5 1 4 4 2 3 2 3 4 1 1 1 2 ... |
correct output |
---|
NO NO NO NO NO ... |
user output |
---|
(empty) |
Test 24
Group: 6, 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 100 5 3 4 3 5 3 3 5 5 4 5 5 5 5 2 ... |
correct output |
---|
YES 4 4 5 5 2 4 4 5 3 5 5 2 5 5 2 ... |
user output |
---|
(empty) |
Test 25
Group: 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 100 88 70 59 44 28 10 19 19 42 16 ... |
correct output |
---|
NO NO NO NO NO ... |
user output |
---|
(empty) |
Test 26
Group: 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 100 31 72 52 30 77 56 79 10 88 11 ... |
correct output |
---|
YES 31 62 14 10 66 63 1 82 37 92 3... |
user output |
---|
(empty) |
Test 27
Group: 3, 4, 5, 6, 8
Verdict: ACCEPTED
input |
---|
1000 1 1 2 1 1 ... |
correct output |
---|
YES 1 YES 1 1 YES ... |
user output |
---|
YES 1 YES 1 1 YES ... Truncated |
Test 28
Group: 8
Verdict: ACCEPTED
input |
---|
1000 1 1 2 2 2 ... |
correct output |
---|
YES 1 YES 2 2 YES ... |
user output |
---|
YES 1 YES 2 2 YES ... Truncated |
Test 29
Group: 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 100 87 81 29 35 8 98 77 50 46 34 5... |
correct output |
---|
YES 34 74 25 91 80 18 95 26 88 12 ... |
user output |
---|
(empty) |
Test 30
Group: 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 100 65 92 39 22 67 41 17 65 97 71 ... |
correct output |
---|
YES 9 38 24 59 69 24 63 3 22 35 24... |
user output |
---|
(empty) |