Submission #979115

#TimeUsernameProblemLanguageResultExecution timeMemory
979115yhkhooVision Program (IOI19_vision)C++17
0 / 100
9 ms1752 KiB
#include "vision.h" #include <bits/stdc++.h> using namespace std; #define pb push_back void construct_network(int H, int W, int K){ int d = H+W-1, mhw = min(H, W); vector<int> d1v; d1v.reserve(d); for(int i=0; i<d; i++){ vector<int> cur; for(int j=0; j<mhw; j++){ int ch = j, cw = i-j; if(ch > -1 && ch < H && cw > -1 && cw < W){ cur.pb(cw + ch*W); } } d1v.pb(add_or(cur)); } vector<int> d2v; d2v.reserve(d); for(int i=0; i<d; i++){ vector<int> cur; for(int j=0; j<mhw; j++){ int ch = j, cw = W-1-i+j; if(ch > -1 && ch < H && cw > -1 && cw < W){ cur.pb(cw + ch*W); } } d2v.pb(add_or(cur)); } vector<int> k1v, k2v, j1v, j2v; vector<int> pro; for(int i=0; i<K; i++){ pro.pb(d1v[i]); } for(int j=K; j<d; j++){ pro.pb(d1v[j]); k1v.pb(add_and({add_or(pro), add_not(add_xor(pro))})); pro.erase(pro.begin()); } pro.clear(); for(int i=0; i<K; i++){ pro.pb(d2v[i]); } for(int j=K; j<d; j++){ pro.pb(d2v[j]); k2v.pb(add_and({add_or(pro), add_not(add_xor(pro))})); pro.erase(pro.begin()); } pro.clear(); for(int i=0; i<K-1; i++){ pro.pb(d1v[i]); } for(int j=K-1; j<d; j++){ pro.pb(d1v[j]); j1v.pb(add_and({add_or(pro), add_not(add_xor(pro))})); pro.erase(pro.begin()); } pro.clear(); for(int i=0; i<K-1; i++){ pro.pb(d2v[i]); } for(int j=K-1; j<d; j++){ pro.pb(d2v[j]); j2v.pb(add_and({add_or(pro), add_not(add_xor(pro))})); pro.erase(pro.begin()); } pro.clear(); int k1 = add_or(k1v), k2 = add_or(k2v), j1 = add_or(j1v), j2 = add_or(j2v); int nc = add_and({add_not(k1), add_not(k2)}), c1 = add_and({k1, add_not(j1)}), c2 = add_and({k2, add_not(j2)}); cerr << nc << ' ' << c1 << ' ' << c2 << '\n'; add_and({add_not(nc), add_or({c1, c2})}); }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...