제출 #604577

#제출 시각아이디문제언어결과실행 시간메모리
604577MonchitoICC (CEOI16_icc)C++17
컴파일 에러
0 ms0 KiB
//-Si puedes imaginarlo, puedes programarlo- Alejandro Taboada #include <icc.h> #include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace std; using namespace __gnu_pbds; template<typename T> using ordered_set = tree<T,null_type,less<T>,rb_tree_tag,tree_order_statistics_node_update>; #define fst first #define snd second #define pb push_back #define sz(x) (int)x.size() #define rep(i,x,n) for(__typeof(n)i=(x);i!=(n);i+=1-2*((x)>(n))) #define dbg(x) cout << #x << "=" << x << " "; #define line cout << "\n.......................................................\n"; struct DSU{ vector<int> p; DSU(){} DSU(int n){ p=vector<int>(n); rep(i,0,n) p[i]=i; } int find(int x){ if(x!=p[x]) return p[x]=find(p[x]); return x; } void merge(int u, int v){ int pu=find(u), pv=find(v); p[pv] = pu; } }; void run(int N){ DSU dsu(N); rep(k,0,N-1){ int a, b; a = -1, b = -1; rep(i,0,N) rep(j,i+1,N){ if (a != -1) break; if(dsu.find(i) != dsu.find(j)){ vector<int> x, y; x.pb(i); y.pb(j); if(query(1, 1, x, y) == 1) a=i,b=j; } } setRoad(a, b); } }

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

icc.cpp: In function 'void run(int)':
icc.cpp:48:20: error: cannot convert 'std::vector<int>' to 'int*'
   48 |     if(query(1, 1, x, y) == 1) a=i,b=j;
      |                    ^
      |                    |
      |                    std::vector<int>
In file included from icc.cpp:2:
icc.h:10:30: note:   initializing argument 3 of 'int query(int, int, int*, int*)'
   10 | int query(int a, int b, int *A, int *B);
      |                         ~~~~~^