# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
667873 | coding_snorlax | Vision Program (IOI19_vision) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
//#include "vision.h"
using namespace std;
int List1[200006]={0};
int row,column;
int num (int i,int j){
return i*column+j;
}
int dis (int i,int j,int k,int l){
return abs(i-k)+abs(j-l);
}
void add_xor(vector<int> b){
cout<<"---xor---\n";
for(int a=0;a<(int)b.size();a++){
cout<<b[a]<<" ";
}
cout<<"\n";
}
void add_and(vector<int> b){
cout<<"---and---\n";
for(int a=0;a<(int)b.size();a++){
cout<<b[a]<<" ";
}
cout<<"\n";
}
void add_or(vector<int> b){
cout<<"---or---\n";
for(int a=0;a<(int)b.size();a++){
cout<<b[a]<<" ";
}
cout<<"\n";
}
void construct_network(int H,int W,int K){
row=H;
column=W;
vector<int> s;
for(int i=0;i<1;i++){
for(int j=0;j<1;j++){
s.clear();
for(int k=0;k<H;k++){
for(int l=0;l<W;l++){
if(dis(i,j,k,l)==K) s.push_back(num(k,l));
}
}
if((int)s.size()==0){
s.push_back(0);
s.push_back(1);
s.push_back(2);
add_and(s);
}
else{
add_xor(s);
}
}
}
vector<int> s1={0,H*W};
for(int i=0;i<H*W;i++){
add_and(s1);
s1[0]++;
s1[1]++;
}
vector<int> s2;
for(int i=0;i<H*W;i++){
s2.push_back(i+2*H*W);
}
add_or(s2);
return;
}
int main(){
construct_network(2,3,1);
}