Submission #637107

# Submission time Handle Problem Language Result Execution time Memory
637107 2022-08-31T14:37:45 Z Dec0Dedd DEL13 (info1cup18_del13) C++14
0 / 100
16 ms 5320 KB
#include <bits/stdc++.h>

using namespace std;

const int N = 1e5+100;
int d[N], par[N][3], n, q;
bool dp[N][3], vis[N][3];

bool gen(int i, int l) {
   if (i == q) {
      if (l == 0) return true;
      return false;
   }

   int x=d[i]-l;
   if (x < 0) return false;

   if (vis[i][l]) return dp[i][l];
   vis[i][l]=true;

   if (x%2 == 0) {
      if ((x == 0 || l > 0) && gen(i+1, 0)) par[i][l]=0, dp[i][l]=true;
      if (x >= 2 && gen(i+1, 2)) par[i][l]=2, dp[i][l]=true;
   } else {
      if (gen(i+1, 1)) par[i][l]=1, dp[i][l]=true;
   }

   return dp[i][l];
}

void solve(int c) {
   cin>>n>>q;

   if (q == 0) {
      cout<<-1<<"\n";
      return;
   }

   for (int i=0; i<=n+10; ++i) d[i]=0;
   for (int i=0; i<=n+10; ++i) {
      for (int j=0; j<3; ++j) dp[i][j]=vis[i][j]=false, par[i][j]=-1;
   }

   vector<int> v;
   v.push_back(0);
   for (int i=0; i<q; ++i) {
      int p; cin>>p;
      v.push_back(p);
   }
   q+=2, v.push_back(n+1);
   for (int i=1; i<q; ++i) d[i]=v[i]-v[i-1]-1;
   bool ok=gen(1, 0);

   if (!ok) {
      cout<<-1<<"\n";
   } else {
      cout<<1<<"\n";
      //cout<<"\n";
   }
}

int main() {
   int t, c=1; cin>>t;
   while (t--) solve(c++);
}
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 212 KB Integer -1 violates the range [1, 9]
2 Incorrect 2 ms 212 KB Integer -1 violates the range [1, 8]
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 212 KB Integer -1 violates the range [1, 9]
2 Incorrect 2 ms 212 KB Integer -1 violates the range [1, 8]
3 Incorrect 9 ms 328 KB Output isn't correct
4 Incorrect 8 ms 212 KB Integer -1 violates the range [1, 18]
# Verdict Execution time Memory Grader output
1 Incorrect 5 ms 340 KB Integer -1 violates the range [1, 28]
2 Incorrect 5 ms 2132 KB Integer -1 violates the range [1, 5]
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 212 KB Integer -1 violates the range [1, 9]
2 Incorrect 2 ms 212 KB Integer -1 violates the range [1, 8]
3 Incorrect 9 ms 328 KB Output isn't correct
4 Incorrect 8 ms 212 KB Integer -1 violates the range [1, 18]
5 Incorrect 1 ms 212 KB Output isn't correct
6 Incorrect 1 ms 212 KB Integer -1 violates the range [1, 100]
7 Incorrect 1 ms 212 KB Output isn't correct
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 212 KB Integer -1 violates the range [1, 9]
2 Incorrect 2 ms 212 KB Integer -1 violates the range [1, 8]
3 Incorrect 9 ms 328 KB Output isn't correct
4 Incorrect 8 ms 212 KB Integer -1 violates the range [1, 18]
5 Incorrect 1 ms 212 KB Output isn't correct
6 Incorrect 1 ms 212 KB Integer -1 violates the range [1, 100]
7 Incorrect 1 ms 212 KB Output isn't correct
8 Incorrect 15 ms 2672 KB Integer -1 violates the range [1, 87]
9 Incorrect 16 ms 3800 KB Output isn't correct
10 Incorrect 15 ms 3832 KB Integer -1 violates the range [1, 81]
11 Incorrect 16 ms 5320 KB Output isn't correct