제출 #669601

#제출 시각아이디문제언어결과실행 시간메모리
669601BlackCPipes (CEOI15_pipes)C++17
컴파일 에러
0 ms0 KiB
// // main.cpp // C // // Created by Sajad Zare on 4/23/22. // #include <iostream> #include <math.h> #include <string> #include <string.h> #include <vector> #include <cstring> #include <stack> #include <queue> #include <set> #include <map> #include <deque> #include <utility> #include <cmath> #include <algorithm> #include <tuple> #include <numeric> #include <iomanip> using namespace std; const int maxn=1e5+2; int parent[maxn]; int parent2[maxn]; int sz[maxn]; int sz2[maxn]; bitset<maxn>seen; int st[maxn]; //int parent3[maxnn]; int lowest[maxn]; int tmm=0; vector<int> N[maxn]; vector<pair<int, int>>t1; vector<pair<int, int>>t2; //map<pair<int, int>, int>sss; int x,y; int get_root(int v){ if (parent[v]!=v){ parent[v]=get_root(parent[v]); } return parent[v]; } int get_root2(int v){ if (parent2[v]!=v){ parent2[v]=get_root2(parent2[v]); } return parent2[v]; } bool Union(int u,int v){ u=get_root(u); v=get_root(v); if (u==v){ return 1; } if (sz[v]<sz[u]){ parent[v]=u; sz[u]+=sz[v]; } else{ parent[u]=v; sz[v]+=sz[u]; } return 0; } bool Union2(int u,int v){ x=u; y=v; u=get_root2(u); v=get_root2(v); if (u==v){ return 0; } t2.push_back({x,y}); if (sz2[v]<sz2[u]){ parent2[v]=u; sz2[u]+=sz2[v]; } else{ parent2[u]=v; sz2[v]+=sz2[u]; } return 1; } void dfs(int node,int pp){ seen[node]=1; tmm+=1; st[node]=tmm; lowest[node]=tmm; //stft.push_back(node); for (int n: N[node]){ if (seen[n]!=1){ //parent3[n]=node; dfs(n,node); lowest[node]=min(lowest[node], lowest[n]); if (lowest[n]>st[node] && count(N[node].begin(),N[node].end(),n)==1){ cout << node << ' ' << n << "\n"; } } else if (n!=pp){ lowest[node]=min(lowest[node],st[n]); } } //ft[node]=t; //stft.push_back(node); } //const int M = 1000000007; int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); int n,m; cin >> n >> m; for (int i=1;i<n+1;i++){ parent[i]=i; sz[i]=1; } for (int i=1;i<n+1;i++){ parent2[i]=i; sz2[i]=1; } int u,v; for (int i=0;i<m;i++){ cin >> u >> v; if (Union(u, v)){ Union2(u, v); } else{ t1.push_back({u,v}); } } int f,ff; //int startnode=t1[0].first; for (int i=0;i<t1.size();i++){ f=t1[i].first; ff=t1[i].second; N[f].push_back(ff); N[ff].push_back(f); //sss[{f,ff}]=1; } for (int i=0;i<t2.size();i++){ f=t2[i].first; ff=t2[i].second; /* if (sss.find({f,ff})==sss.end()){ sss[{f,ff}]=1; N[f].push_back(ff); N[ff].push_back(f); } else{ sss[{f,ff}]=2; } */ N[f].push_back(ff); N[ff].push_back(f); } //cout << startnode << endl; for (int i=1;i<n+1;i++){ if (seen[i]!=1){ dfs(i,-1); } } return 0; }

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

pipes.cpp:32:1: error: 'bitset' does not name a type
   32 | bitset<maxn>seen;
      | ^~~~~~
pipes.cpp: In function 'void dfs(int, int)':
pipes.cpp:90:5: error: 'seen' was not declared in this scope
   90 |     seen[node]=1;
      |     ^~~~
pipes.cpp: In function 'int main()':
pipes.cpp:137:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  137 |     for (int i=0;i<t1.size();i++){
      |                  ~^~~~~~~~~~
pipes.cpp:144:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  144 |     for (int i=0;i<t2.size();i++){
      |                  ~^~~~~~~~~~
pipes.cpp:162:13: error: 'seen' was not declared in this scope
  162 |         if (seen[i]!=1){
      |             ^~~~