답안 #584545

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
584545 2022-06-27T14:25:28 Z MohammadAghil 경찰관과 강도 (BOI14_coprobber) C++17
컴파일 오류
0 ms 0 KB
#include <bits/stdc++.h>
#include "coprobber.h"
using namespace std;

typedef long long ll;
typedef pair<int, int> pp;

#define rep(i,l,r) for(int i = (l); i < (r); i++)
#define per(i,r,l) for(int i = (r); i >= (l); i--)
#define sz(x) (int)x.size()
#define ff first
#define ss secounf 
#define all(x) begin(x), end(x)
#define pb push_back

const ll mod = 1e9+7, maxn = 5e2+1, inf = ll(1e9)+5;


struct state{
     int u, v, id;
     bool nb;
     state(){}
     state(int u, int v, int nb): u(u), v(v), nb(nb){ 
          id = (u*maxn + v)<<1|nb; 
     }
     state(int id): id(id){
          nb = id&1, id >>= 1;
          v = id%maxn, u = id/maxn;
     }
};

int n, cnt[maxn*maxn*2];
vector<int> adjr[maxn*maxn*2], adj[maxn*maxn*2];
bool win[maxn*maxn*2], B[maxn][maxn];
int nxt[maxn*maxn*2];

void calc(){
     // rep(i,0,n) rep(j,0,n){
     //      cout << i << ' ' << j << ": \n";
     //      for(int c: adj[state(i, j, 1).id]){
               // cout << state(c).u << ' ' << state(c).v << ' ' <<state(c).nb << '\n';
     //      }
     // }
     vector<int> winners;
     rep(i,0,n) rep(t,0,2) winners.pb(state(i, i, t).id), win[winners.back()] = true;
     while(sz(winners)){
          int r = winners.back(); winners.pop_back();
          // win[r] = true;
          state R(r);
          for(int c: adjr[r]){
               if(win[c]) continue;
               cnt[c]++;
               state S(c);
               bool add = false;
               if(S.nb){
                    if(cnt[c] == sz(adj[c])) {
                         winners.pb(c);
                         win[c] = true;
                         add ^= 1;
                    }
               }else winners.pb(c), nxt[c] = R.u, add ^= 1, win[c] = true;
               // cout << R.u << ' ' << R.v << ' ' << R.nb << ' ' << S.u << ' ' << S.v << ' ' << S.nb << ' ' << cnt[c] << ' ' << add << '\n';
          }
     }
}

void add_edge(state a, state b){
     adj[a.id].pb(b.id);
     adjr[b.id].pb(a.id);
}

state cr;

int nextMove(int r){
     cr = state(cr.u, r, 0);
     cr = state(nxt[cr.id], r, 1);
     return cr.u;
}

// int start(int n, bool A[MAX_N][MAX_N]){ ::n = n;
//      rep(i,0,n) rep(j,0,n) {
//           if(A[i][j]){
//                B[i][j] = true;
//                rep(a,0,n) {
//                     add_edge(state(a, i, 1), state(a, j, 0));
//                     add_edge(state(i, a, 0), state(j, a, 1));
//                }
//           }
//      }
//      rep(i,0,n) rep(j,0,n) add_edge(state(i, j, 0), state(i, j, 1));
//      rep(i,0,n) {
//           add_edge(state(n, n, 0), state(i, n, 1)); 
//           rep(j,0,n) add_edge(state(i, n, 1), state(i, j, 0));
//      }
//      calc();
//      if(!win[state(n, n, 0).id]) return -1;
//      cr = state(nxt[state(n, n, 0).id], n, 1);
//      return cr.u;
// }

// int main(){
//      cin.tie(0) -> sync_with_stdio(0);
//      cin >> n;
//      rep(i,0,n) rep(j,0,n) {
//           bool k; cin >> k;
//           if(k){
//                rep(a,0,n) {
//                     add_edge(state(a, i, 1), state(a, j, 0));
//                     add_edge(state(i, a, 0), state(j, a, 1));
//                }
//           }
//      }
//      rep(i,0,n) rep(j,0,n) add_edge(state(i, j, 0), state(i, j, 1));
//      rep(i,0,n) {
//           add_edge(state(n, n, 0), state(i, n, 1)); 
//           rep(j,0,n) add_edge(state(i, n, 1), state(i, j, 0));
//      }
//      calc();
//      rep(i,0,n) rep(j,0,n) {
//           int ID = state(i, j, 0).id;
//           if(!win[ID]) cout << -1 << ' ';
//           else cout << i << ',' << j << ',' << nxt[ID] << ' ';
//           if(j == n-1) cout << '\n';
//      }
//      if(!win[state(n, n, 0).id]) return -1;
//      cr = state(nxt[state(n, n, 0).id], n, 1);


//      cout << '#' << cr.u << endl;
//      while(cr.u - cr.v || cr.u == n){
//           int a; cin >> a;
//           cout << '#' << nextMove(a) << endl;
//      }
//      return 0;
// }

/*
4
0 1 0 1
1 0 1 0 
0 1 0 1
1 0 1 0

3
0 1 1
1 0 1 
1 1 0

*/

Compilation message

/usr/bin/ld: /tmp/cctYMUPm.o: in function `main':
grader.cpp:(.text.startup+0x16c): undefined reference to `start(int, bool (*) [500])'
collect2: error: ld returned 1 exit status