Submission #147377

#TimeUsernameProblemLanguageResultExecution timeMemory
147377NucleistVision Program (IOI19_vision)C++14
0 / 100
6 ms1276 KiB
#include <bits/stdc++.h> #include "vision.h" using namespace std; #define flash ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0) #define debug(x) cerr << " - " << #x << ": " << x << endl; #define debugs(x, y) cerr << " - " << #x << ": " << x << " " << #y << ": " << y << endl; #define all(x) (x).begin(),(x).end() #define sz(x) (ll)x.size() #define ll long long #define INF 1000000000 #define pb push_back struct greateri { template<class T> bool operator()(T const &a, T const &b) const { return a > b; } }; void construct_network(int H,int W,int K) { vector<int>zeros; add_not(0); for (int i = 0; i < H; ++i) { for (int j = 0; j < W; ++j) { int cell = i*W+j; zeros.pb(cell); } } for (int i = 0; i < H; ++i) { for (int j = 0; j < W; ++j) { for (int k = i+1; k < H; ++k) { for (int c = j+1; c < W; ++c) { vector<int>now; int cell1 = i*W+j; int cell2 = k*W+c; now.pb(cell1);now.pb(cell2); int kol = add_and(now); if(kol==1) { if(abs(i-k)+abs(j-c)==K) return; else { add_and(zeros); return; } return; } } } } } return ; } //code the AC sol ! // BS/queue/map
#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...