제출 #1025371

#제출 시각아이디문제언어결과실행 시간메모리
1025371LeaRouseVision Program (IOI19_vision)C++14
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> #include "vision.h" #define fastio ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); #define ll long long #define ff first #define ss second using namespace std; const int MAX=2e5+5; ll P[MAX],bit[MAX],d=0; void construct_network(int h,int w,int k){ vector<pair<int,int>>v; bool awa=false; for(int i=0;i<w*h;i++){ int a=i/w; int b=i-w*a; for(int j=i+1;j<w*h;j++){ int c=j/w; int d=j-w*c; if(abs(a-c)+abs(b-d)==k){ v.push_back({i,j}); if(v.size()==2){ awa=true; break; } } } if(awa) break; } int a=w*h; for(auto it:v){ r.push_back(it.ff); r.push_back(it.ss); add_and(r); r.clear(); m.push_back(a); a++; } if(v.size()==2){ add_not(w*h); add_not(w*h+1); add_or(m); } }

컴파일 시 표준 에러 (stderr) 메시지

vision.cpp: In function 'void construct_network(int, int, int)':
vision.cpp:32:8: error: 'r' was not declared in this scope
   32 |        r.push_back(it.ff);
      |        ^
vision.cpp:36:9: error: 'm' was not declared in this scope
   36 |         m.push_back(a);
      |         ^
vision.cpp:42:16: error: 'm' was not declared in this scope
   42 |         add_or(m);
      |                ^