| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 291577 | medmdg | Vision Program (IOI19_vision) | C++14 | 0 ms | 0 KiB | 
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
#include "vision.h"
using namespace std;
 
void construct_network(int H, int W, int K){
    vector<int> b;
    for(int i=0;i<H*W;i+=20){
        vector<int> h;
        for(int j=i;j<min(i+20,H*W);j++){
            h.push_back(j);
        }
        if(h.size())
        if(!add_and(h)){
            for(int j=i;j<min(H*W,i+20);j++){
                if(add_not(j)){
                    b.push_back(j);
                }
            }
        }
    }
        int x1=b[0]%W;
        int x2=b[1]%W;
        int y1=b[0]/W;
        int y2=b[1]/W;
        bool tr=false;
        if(abs(x1-x2)+abs(y1-y2)==K){
            tr=true;
        }
        if(tr){
            int f=add_or(b);
        }else{
            int f=add_(b[0]);
        }
}
