Task: | Programmers |
Sender: | cubefreak777 |
Submission time: | 2021-01-31 15:24:30 +0200 |
Language: | C++ (C++17) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
#2 | WRONG ANSWER | 0 |
#3 | WRONG ANSWER | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
#2 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
#3 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
#4 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
#5 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
#6 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
#7 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
#8 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
#9 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
#10 | WRONG ANSWER | 0.03 s | 1, 2, 3 | details |
#11 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
#12 | RUNTIME ERROR | 0.01 s | 1, 3 | details |
#13 | RUNTIME ERROR | 0.29 s | 1, 3 | details |
#14 | RUNTIME ERROR | 0.01 s | 1, 3 | details |
#15 | RUNTIME ERROR | 0.28 s | 1, 3 | details |
#16 | RUNTIME ERROR | 0.29 s | 1, 3 | details |
#17 | WRONG ANSWER | 0.23 s | 2, 3 | details |
#18 | TIME LIMIT EXCEEDED | -- | 2, 3 | details |
#19 | TIME LIMIT EXCEEDED | -- | 2, 3 | details |
#20 | TIME LIMIT EXCEEDED | -- | 2, 3 | details |
#21 | WRONG ANSWER | 0.43 s | 2, 3 | details |
#22 | TIME LIMIT EXCEEDED | -- | 2, 3 | details |
#23 | TIME LIMIT EXCEEDED | -- | 2, 3 | details |
#24 | RUNTIME ERROR | 0.02 s | 3 | details |
#25 | RUNTIME ERROR | 0.01 s | 3 | details |
#26 | RUNTIME ERROR | 0.02 s | 3 | details |
#27 | TIME LIMIT EXCEEDED | -- | 3 | details |
#28 | RUNTIME ERROR | 0.02 s | 3 | details |
#29 | RUNTIME ERROR | 0.30 s | 3 | details |
#30 | RUNTIME ERROR | 0.03 s | 3 | details |
#31 | RUNTIME ERROR | 0.31 s | 3 | details |
Code
#include<bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace __gnu_pbds; using namespace std; // #pragma GCC optimize("Ofast") // #pragma GCC target("avx,avx2,fma") // #pragma GCC optimization ("unroll-loops") typedef long long ll ; typedef pair<int,int> pii; typedef pair<ll,ll> pll; #define CS custom_hash #define vt vector #define loop(i,a,b) for(ll i=a ;i<b;i++) #define For(i,n) for(int i=0;i<(ll)n;i++) #define Rev(i,n) for(int i=n-1;i>=0;i--) #define Rep(i,n) for(int i=1;i<=n;++i) #define F first #define S second #define pb push_back #define em emplace_back #define all(v) (v).begin(),(v).end() #define mems(x, y) memset(x, y, sizeof(x)) #define sz(x) (int)(x).size() #define mp(a,b) make_pair(a,b) #define po(n) cout << n <<"\n " #define ar array #define endl "\n" #define PI acos(-1) #define umap unordered_map #define gmap gp_hash_table #define ld long double #define SA(n) __builtin_popcountll(n) #define LB lower_bound #define UB upper_bound // debugger credits: https://codeforces.com/blog/entry/68809 void __print(int x) {cerr << x;} void __print(long x) {cerr << x;} void __print(long long x) {cerr << x;} void __print(unsigned x) {cerr << x;} void __print(unsigned long x) {cerr << x;} void __print(unsigned long long x) {cerr << x;} void __print(float x) {cerr << x;} void __print(double x) {cerr << x;} void __print(long double x) {cerr << x;} void __print(char x) {cerr << '\'' << x << '\'';} void __print(const char *x) {cerr << '\"' << x << '\"';} void __print(const string &x) {cerr << '\"' << x << '\"';} void __print(bool x) {cerr << (x ? "true" : "false");} template<typename T, typename V> void __print(const pair<T, V> &x) {cerr << '{'; __print(x.first); cerr << ','; __print(x.second); cerr << '}';} template<typename T> void __print(const T &x) {int f = 0; cerr << '{'; for (auto &i: x) cerr << (f++ ? "," : ""), __print(i); cerr << "}";} void _print() {cerr << "]\n";} template <typename T, typename... V> void _print(T t, V... v) {__print(t); if (sizeof...(v)) cerr << ", "; _print(v...);} template <typename T, typename V> void mdebug(map<T,vt<V>>m){ for(auto x:m){ cerr << x.F << " : [ " ; for(auto c:x.S) cerr << c << " "; cerr << "]"<<endl ; } } #define debug(x...) cerr << "[" << #x << "] = ["; _print(x) //#ifndef ONLINE_JUDGE //#ifndef LOCAL #define debug(x...) cerr << "[" << #x << "] = ["; _print(x) //#else //#define debug(x...) //#endif //#pragma GCC optimize "trapv" template<class T> using oset =tree<T, null_type, less<T>, rb_tree_tag,tree_order_statistics_node_update> ; //template credits :William Lin(tmwilliamlin168) #define F_OR(i, a, b, s) for (int i = (a); ((s) > 0 ? i < (b) : i > (b)); i += (s)) #define F_OR1(e) F_OR(i, 0, e, 1) #define F_OR2(i, e) F_OR(i, 0, e, 1) #define F_OR3(i, b, e) F_OR(i, b, e, 1) #define F_OR4(i, b, e, s) F_OR(i, b, e, s) #define GET5(a, b, c, d, e, ...) e #define F_ORC(...) GET5(__VA_ARGS__, F_OR4, F_OR3, F_OR2, F_OR1) #define FOR(...) F_ORC(__VA_ARGS__)(__VA_ARGS__) #define EACH(x, a) for (auto& x: a) template<class T> bool umin(T& a, const T& b) { return b<a?a=b, 1:0; } template<class T> bool umax(T& a, const T& b) { return a<b?a=b, 1:0; } template<class A> void read(vt<A>& v); template<class A, size_t S> void read(ar<A, S>& a); template<class T> void read(T& x) { cin >> x; } void read(double& d) { string t; read(t); d=stod(t); } void read(long double& d) { string t; read(t); d=stold(t); } template<class H, class... T> void read(H& h, T&... t) { read(h); read(t...); } template<class A> void read(vt<A>& x) { EACH(a, x) read(a); } template<class A, size_t S> void read(array<A, S>& x) { EACH(a, x) read(a); } string to_string(char c) { return string(1, c); } string to_string(bool b) { return b?"true":"false"; } string to_string(const char* s) { return string(s); } string to_string(string s) { return s; } string to_string(vt<bool> v) { string res; FOR(sz(v)) res+=char('0'+v[i]); return res; } template<size_t S> string to_string(bitset<S> b) { string res; FOR(S) res+=char('0'+b[i]); return res; } template<class T> string to_string(T v) { bool f=1; string res; EACH(x, v) { if(!f) res+=' '; f=0; res+=to_string(x); } return res; } template<class A> void pff(A x) { cout << to_string(x); } template<class H, class... T> void pff(const H& h, const T&... t) { pff(h); pff(t...); } void print() { pff("\n"); } template<class H, class... T> void print(const H& h, const T&... t) { pff(h); if(sizeof...(t)) pff(' '); print(t...); } struct PH{ size_t operator()(const pair<int,int>&x)const{ size_t ans=0; for(int i=0;i<x.first;i++) ans+=x.second; return ans; } }; struct custom_hash { static uint64_t splitmix64(uint64_t x) { // http://xorshift.di.unimi.it/splitmix64.c x += 0x9e3779b97f4a7c15; x = (x ^ (x >> 30)) * 0xbf58476d1ce4e5b9; x = (x ^ (x >> 27)) * 0x94d049bb133111eb; return x ^ (x >> 31); } size_t operator()(uint64_t x) const { static const uint64_t FIXED_RANDOM = chrono::steady_clock::now().time_since_epoch().count(); return splitmix64(x + FIXED_RANDOM); } }; // void DBG() { // cerr << "]" << endl; // } // template<class H, class... T> void DBG(H h, T... t) { // cerr << to_string(h); // if(sizeof...(t)) // cerr << ", "; // DBG(t...); // } // // #ifdef _DEBUG // #define dbg(...) cerr << "LINE(" << __LINE__ << ") -> [" << #__VA_ARGS__ << "]: [", DBG(__VA_ARGS__) // // #else // // #define dbg(...) 0 // // #endif template<class T> void offset(ll o, T& x) { x+=o; } template<class T> void offset(ll o, vt<T>& x) { EACH(a, x) offset(o, a); } template<class T, size_t S> void offset(ll o, ar<T, S>& x) { EACH(a, x) offset(o, a); } template<class T> void fk(T a) { print(a) ; exit(0) ; } void FIO(){ #ifndef ONLINE_JUDGE freopen("input.txt","r",stdin) ; freopen("output.txt","w",stdout) ; #endif } #define pf(n) return print(n) #define int ll long const M=1e9+7; const ll INF =1e18; // order_of_key (k) : Number of items strictly smaller than k . // find_by_order(k) : K-th element in a set (counting from zero). //Syntax to create a min heap for priority queue // priority_queue <T, vector<T>, greater<T>>pq ; //make sure to clear the adjacency list for every test case // check mxN size //check if numbers are big use powl,sqrtl,builtin_popcountll()...... const long mxN =1e5+2 ; void solve(){ int n ;read(n); vt<int>a(n);read(a) ; vt<int>b(n) ; iota(all(b),1) ; if(n<=4){ FOR(n) if(a[i]^b[i]) pf("NO") ; pf("YES") ; } print("YES") ; } signed main() { ios_base::sync_with_stdio(false); cin.tie(NULL); FIO() ; //cout << setprecision(20) << fixed ; int T=1; read(T); FOR(_,T){ // pff("Case #", _+1, ": "); solve(); } return 0; }
Test details
Test 1
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
8 3 3 1 2 7 9 3 4 7 |
correct output |
---|
1 |
user output |
---|
NO YES YES YES YES ... |
Test 2
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
2 1 2 13 |
correct output |
---|
11 |
user output |
---|
NO YES |
Test 3
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
20 10 16 20 6 15 19 12 11 17 20 6 15... |
correct output |
---|
6 |
user output |
---|
YES YES YES YES YES ... |
Test 4
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
14 5 11 3 8 3 14 8 10 13 11 10 17 1... |
correct output |
---|
0 |
user output |
---|
YES YES YES YES YES ... |
Test 5
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
15 1 8 5 1 8 18 15 6 20 14 9 10 9 1... |
correct output |
---|
0 |
user output |
---|
NO YES YES YES YES ... |
Test 6
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
10 3 10 19 16 15 12 5 14 8 3 15 |
correct output |
---|
4 |
user output |
---|
NO YES YES YES YES ... |
Test 7
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
202 90 177 187 183 647 616 580 499 78... |
correct output |
---|
213 |
user output |
---|
YES YES YES YES YES ... Truncated |
Test 8
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
2000 512 141 583 135 833 900 308 248 58... |
correct output |
---|
0 |
user output |
---|
YES YES YES YES YES ... Truncated |
Test 9
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
2000 972 685 4 289 865 93 159 48 866 56... |
correct output |
---|
276 |
user output |
---|
YES YES YES YES YES ... Truncated |
Test 10
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
2000 1000 698 153 298 118 631 341 238 7 ... |
correct output |
---|
517 |
user output |
---|
YES YES YES YES YES ... Truncated |
Test 11
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
2000 1 983 144 449 584 839 166 77 885... |
correct output |
---|
0 |
user output |
---|
NO YES YES YES YES ... Truncated |
Test 12
Group: 1, 3
Verdict: RUNTIME ERROR
input |
---|
1464 320 846762124 954854396 12767390 7... |
correct output |
---|
35809369 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc
Test 13
Group: 1, 3
Verdict: RUNTIME ERROR
input |
---|
2000 231 801945178 924940258 369188694 ... |
correct output |
---|
7831421 |
user output |
---|
(empty) |
Test 14
Group: 1, 3
Verdict: RUNTIME ERROR
input |
---|
2000 461 464790475 932031556 838378103 ... |
correct output |
---|
37272564 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc
Test 15
Group: 1, 3
Verdict: RUNTIME ERROR
input |
---|
2000 100 484046702 267135814 995006323 ... |
correct output |
---|
1268400 |
user output |
---|
(empty) |
Test 16
Group: 1, 3
Verdict: RUNTIME ERROR
input |
---|
2000 996 98352148 438929491 242618159 1... |
correct output |
---|
445965905 |
user output |
---|
(empty) |
Test 17
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
65879 19675 896 316 972 476 636 227 716 78... |
correct output |
---|
0 |
user output |
---|
YES YES YES YES YES ... Truncated |
Test 18
Group: 2, 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
200000 53820 995 720 135 767 943 742 191 26... |
correct output |
---|
0 |
user output |
---|
(empty) |
Test 19
Group: 2, 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
200000 32297 527 947 84 851 908 833 339 112... |
correct output |
---|
0 |
user output |
---|
(empty) |
Test 20
Group: 2, 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
200000 99982 561 174 242 275 460 109 664 68... |
correct output |
---|
322 |
user output |
---|
(empty) |
Test 21
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
200000 99955 911 33 314 861 298 117 972 982... |
correct output |
---|
245 |
user output |
---|
YES YES YES YES YES ... Truncated |
Test 22
Group: 2, 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
200000 99972 783 1000 673 611 87 452 702 92... |
correct output |
---|
290 |
user output |
---|
(empty) |
Test 23
Group: 2, 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
200000 99961 795 136 128 643 60 422 371 839... |
correct output |
---|
252 |
user output |
---|
(empty) |
Test 24
Group: 3
Verdict: RUNTIME ERROR
input |
---|
195426 76599 442872072 619088799 118541378 ... |
correct output |
---|
143376538 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc
Test 25
Group: 3
Verdict: RUNTIME ERROR
input |
---|
200000 1661 894106972 620084612 931442312 ... |
correct output |
---|
33089 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc
Test 26
Group: 3
Verdict: RUNTIME ERROR
input |
---|
200000 86032 211444153 846442677 297198384 ... |
correct output |
---|
196001810 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc
Test 27
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
200000 28275 28280312 349705372 96535649 84... |
correct output |
---|
11627219 |
user output |
---|
(empty) |
Test 28
Group: 3
Verdict: RUNTIME ERROR
input |
---|
200000 81473 178022892 112774306 250584651 ... |
correct output |
---|
162430841 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc
Test 29
Group: 3
Verdict: RUNTIME ERROR
input |
---|
200000 99987 297598052 494409138 182268523 ... |
correct output |
---|
489497036 |
user output |
---|
(empty) |
Test 30
Group: 3
Verdict: RUNTIME ERROR
input |
---|
200000 99971 316462272 843156468 434342923 ... |
correct output |
---|
483167476 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc
Test 31
Group: 3
Verdict: RUNTIME ERROR
input |
---|
200000 99964 811543559 465033274 620180191 ... |
correct output |
---|
481497328 |
user output |
---|
(empty) |