답안 #637104

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
637104 2022-08-31T14:15:19 Z Dec0Dedd DEL13 (info1cup18_del13) C++14
6 / 100
19 ms 6220 KB
#include <bits/stdc++.h>

using namespace std;

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

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() {
   cin>>n>>q;

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

   for (int i=0; i<=n; ++i) d[i]=rm[i]=0;
   for (int i=0; i<=n; ++i) {
      for (int j=0; j<5; ++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<<0<<"\n";
      cout<<"\n";
   }
}

int main() {
   int t; cin>>t;
   while (t--) solve();
}

Compilation message

del13.cpp: In function 'void solve()':
del13.cpp:41:49: warning: iteration 4 invokes undefined behavior [-Waggressive-loop-optimizations]
   41 |       for (int j=0; j<5; ++j) dp[i][j]=vis[i][j]=false, par[i][j]=-1;
      |                                        ~~~~~~~~~^~~~~~
del13.cpp:41:22: note: within this loop
   41 |       for (int j=0; j<5; ++j) dp[i][j]=vis[i][j]=false, par[i][j]=-1;
      |                     ~^~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 212 KB Output isn't correct
2 Incorrect 2 ms 212 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 212 KB Output isn't correct
2 Incorrect 2 ms 212 KB Output isn't correct
3 Correct 11 ms 212 KB Output is partially correct
4 Correct 9 ms 328 KB Output is partially correct
# 결과 실행 시간 메모리 Grader output
1 Correct 6 ms 464 KB Output is partially correct
2 Correct 4 ms 2900 KB Output is partially correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 212 KB Output isn't correct
2 Incorrect 2 ms 212 KB Output isn't correct
3 Correct 11 ms 212 KB Output is partially correct
4 Correct 9 ms 328 KB Output is partially correct
5 Correct 1 ms 212 KB Output is partially correct
6 Incorrect 1 ms 212 KB Output isn't correct
7 Incorrect 1 ms 212 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 212 KB Output isn't correct
2 Incorrect 2 ms 212 KB Output isn't correct
3 Correct 11 ms 212 KB Output is partially correct
4 Correct 9 ms 328 KB Output is partially correct
5 Correct 1 ms 212 KB Output is partially correct
6 Incorrect 1 ms 212 KB Output isn't correct
7 Incorrect 1 ms 212 KB Output isn't correct
8 Correct 16 ms 3668 KB Output is partially correct
9 Correct 19 ms 4676 KB Output is partially correct
10 Correct 16 ms 4736 KB Output is partially correct
11 Correct 19 ms 6220 KB Output is partially correct