# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
470158 | radal | Watermelon (INOI20_watermelon) | C++14 | 1 ms | 332 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define rep(i,l,r) for(int i = l; i < r; i++)
#define pb push_back
#define X first
#define Y second
#define debug(x) cerr << #x << " : " << x << endl;
using namespace std;
typedef long long ll;
typedef pair<int, int> pll;
const long long int mod = 1e9+7,N = 25;
int n,k;
int b[N],a[N],ind[N],ind2[N];
inline bool check(vector<int> ve){
vector<pll> ve2,ve3;
rep(i,0,n) ve2.pb({ve[i],i});
int sz = n,p = 1;
memset(a,-1,sizeof a);
while (ve2.size()){
rep(i,0,sz-1){
if (ve2[i].X > ve2[i+1].X) ve3.pb(ve2[i]);
else{
a[ve2[i].Y] = p;
if (b[ve2[i].Y] != a[ve2[i].Y]) return 0;
}
}
ve3.pb(ve2[sz-1]);
p++;
if ((int)ve3.size() == sz) break;
# | 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... |