Submission #254448

#TimeUsernameProblemLanguageResultExecution timeMemory
254448caoashCop and Robber (BOI14_coprobber)C++14
Compilation error
0 ms0 KiB
#pragma GCC target ("sse4") #include <bits/stdc++.h> #include<ext/pb_ds/assoc_container.hpp> #include<ext/pb_ds/tree_policy.hpp> using namespace std; using namespace __gnu_pbds; typedef long long ll; typedef long double ld; typedef complex<ld> cd; typedef pair<int, int> pi; typedef pair<ll,ll> pl; typedef pair<ld,ld> pd; typedef pair<int, pi> pii; typedef vector<int> vi; typedef vector<ld> vd; typedef vector<ll> vl; typedef vector<pi> vpi; typedef vector<pl> vpl; typedef vector<cd> vcd; #define fax(i, a) for (int i = 0; i < (a); i++) #define f0x(i, a, b) for (int i = (a); i < (b); i++) #define f0xd(i,a,b) for (int i = (b)-1; i >= (a); i--) #define faxd(i,a) for (int i = (a)-1; i >= 0; i--) #define trav(a, x) for (auto& a : x) #define memeset memset #define mp make_pair #define pb push_back #define f first #define s second #define lb lower_bound #define ub upper_bound #define sz(x) (int)x.size() #define all(x) begin(x), end(x) #define rsz resize template<class T> void ckmin(T &a, T b) { a = min(a, b); } template<class T> void ckmax(T &a, T b) { a = max(a, b); } template <class T, int ...Ns> struct BIT { T val = 0; void upd(T v) { val += v; } T query() { return val; } }; template <class T, int N, int... Ns> struct BIT<T, N, Ns...> { BIT<T,Ns...> bit[N + 1]; template<typename... Args> void upd(int pos, Args... args) { for (; pos <= N; pos += (pos&-pos)) bit[pos].upd(args...); } template<typename... Args> T sum(int r, Args... args) { T res = 0; for (; r; r -= (r&-r)) res += bit[r].query(args...); return res; } template<typename... Args> T query(int l, int r, Args... args) { return sum(r,args...)-sum(l-1,args...); } }; namespace input { template<class T> void re(complex<T>& x); template<class T1, class T2> void re(pair<T1,T2>& p); template<class T> void re(vector<T>& a); template<class T, size_t SZ> void re(array<T,SZ>& a); template<class T> void re(T& x) { cin >> x; } void re(double& x) { string t; re(t); x = stod(t); } void re(ld& x) { string t; re(t); x = stold(t); } template<class T, class... Ts> void re(T& t, Ts&... ts) { re(t); re(ts...); } template<class T> void re(complex<T>& x) { T a,b; re(a,b); x = cd(a,b); } template<class T1, class T2> void re(pair<T1,T2>& p) { re(p.f,p.s); } template<class T> void re(vector<T>& a) { fax(i,sz(a)) re(a[i]); } template<class T, size_t SZ> void re(array<T,SZ>& a) { fax(i,SZ) re(a[i]); } } using namespace input; namespace output { void pr(int x) { cout << x; } void pr(long x) { cout << x; } void pr(ll x) { cout << x; } void pr(unsigned x) { cout << x; } void pr(unsigned long x) { cout << x; } void pr(unsigned long long x) { cout << x; } void pr(float x) { cout << x; } void pr(double x) { cout << x; } void pr(ld x) { cout << x; } void pr(char x) { cout << x; } void pr(const char* x) { cout << x; } void pr(const string& x) { cout << x; } void pr(bool x) { pr(x ? "true" : "false"); } template<class T1, class T2> void pr(const pair<T1,T2>& x); template<class T> void pr(const T& x); template<class T, class... Ts> void pr(const T& t, const Ts&... ts) { pr(t); pr(ts...); } template<class T1, class T2> void pr(const pair<T1,T2>& x) { pr("{",x.f,", ",x.s,"}"); } template<class T> void pr(const T& x) { pr("{"); // const iterator needed for vector<bool> bool fst = 1; for (const auto& a: x) pr(!fst?", ":"",a), fst = 0; pr("}"); } void ps() { pr("\n"); } // print w/ spaces template<class T, class... Ts> void ps(const T& t, const Ts&... ts) { pr(t); if (sizeof...(ts)) pr(" "); ps(ts...); } void pc() { pr("]\n"); } // debug w/ commas template<class T, class... Ts> void pc(const T& t, const Ts&... ts) { pr(t); if (sizeof...(ts)) pr(", "); pc(ts...); } #define dbg(x...) pr("[",#x,"] = ["), pc(x); } using namespace output; namespace io { void setIn(string s) { freopen(s.c_str(),"r",stdin); } void setOut(string s) { freopen(s.c_str(),"w",stdout); } void setIO(string s = "") { ios_base::sync_with_stdio(0); cin.tie(0); // fast I/O if (sz(s)) { setIn(s+".in"), setOut(s+".out"); } // for USACO } } using namespace io; mt19937 rnd(chrono::high_resolution_clock::now().time_since_epoch().count()); const int MOD = 1000000007; // 998244353 const ll INF = 1e18; const int MX = 505; const ld PI = 4*atan((ld)1); const int WIN = 1, LOSE = 2; vector<pii> adj[MX][MX][2], rev[MX][MX][2]; int deg[MX][MX][2]; pii go[MX][MX][2]; int gst[MX][MX][2]; bool vis[MX][MX][2]; int ret = -1; int start(int N, bool A[MX][MX]){ fax(i, N) { fax(j, N) { if(i != j) { adj[i][j][0].pb(mp(i, mp(j, 1))); // dbg(i, j, 0, i, j, 1); rev[i][j][1].pb(mp(i, mp(j, 0))); fax(k, N) { if(A[i][k]) { adj[i][j][0].pb(mp(k, mp(j, 1))); // dbg(i, j, 0, k, j, 1); rev[k][j][1].pb(mp(i, mp(j, 0))); deg[i][j][0]++; } if(A[j][k]) { adj[i][j][1].pb(mp(i, mp(k, 0))); // dbg(i, j, 1, i, k, 0); rev[i][k][0].pb(mp(i, mp(j, 1))); deg[i][j][1]++; } } } } } queue<pii> st; fax(i, N) { fax(j, N) { if(!deg[i][j][0]){ st.push(mp(i, mp(j, 0))); // dbg(i, j, 0); } if(!deg[i][j][1]){ st.push(mp(i, mp(j, 1))); // dbg(i, j, 1); } } } while(!st.empty()) { pii curr = st.front(); st.pop(); if(curr.s.s) gst[curr.f][curr.s.f][curr.s.s] = WIN; else gst[curr.f][curr.s.f][curr.s.s] = LOSE; if(curr.f == curr.s.f) gst[curr.f][curr.s.f][curr.s.s] = WIN; for(pii to : adj[curr.f][curr.s.f][curr.s.s]) { // dbg(to); if(curr.s.s){ if(gst[to.f][to.s.f][to.s.s] == LOSE){ // dbg("LOSE", to.f, to.s.f, to.s.s); gst[curr.f][curr.s.f][curr.s.s] = LOSE; } } else{ if(gst[to.f][to.s.f][to.s.s] == WIN){ // dbg("WIN", curr, to); go[curr.f][curr.s.f][curr.s.s] = mp(to.f, mp(to.s.f, to.s.s)); gst[curr.f][curr.s.f][curr.s.s] = WIN; } } } for(pii to : rev[curr.f][curr.s.f][curr.s.s]){ if(!vis[to.f][to.s.f][to.s.s]){ st.push(to); } } vis[curr.f][curr.s.f][curr.s.s] = true; // dbg(curr, gst[curr.f][curr.s.f][curr.s.s]); } fax(i, N){ fax(j, N){ if(gst[i][j][0] != WIN){ break; } if(j == N - 1){ ret = i; } } } return ret; } int nextMove(int r){ if(r == ret){ return -1; } // dbg(r, go[ret][r][0]); // dbg(gst[ret][r][0]); ret = go[ret][r][0].f; return ret; } /* int main() { setIO(); int N; re(N); bool inp[MX][MX]; fax(i, N){ fax(j, N){ re(inp[i][j]); } } ps(start(N, inp)); cout << endl; int r; re(r); while(r != -1){ ps(nextMove(r)); cout << endl; re(r); } } */

Compilation message (stderr)

coprobber.cpp: In function 'void io::setIn(std::__cxx11::string)':
coprobber.cpp:133:35: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
     void setIn(string s) { freopen(s.c_str(),"r",stdin); }
                            ~~~~~~~^~~~~~~~~~~~~~~~~~~~~
coprobber.cpp: In function 'void io::setOut(std::__cxx11::string)':
coprobber.cpp:134:36: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
     void setOut(string s) { freopen(s.c_str(),"w",stdout); }
                             ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
/tmp/ccnO6VlC.o: In function `main':
grader.cpp:(.text.startup+0x13c): undefined reference to `start(int, bool (*) [500])'
collect2: error: ld returned 1 exit status