# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
34458 | 2017-11-11T13:43:43 Z | bnahmad15 | Pipes (CEOI15_pipes) | C++14 | 213 ms | 9208 KB |
#include <bits/stdc++.h> using namespace std; const int N = 5010; bitset< N > vis , vis2[N] , vis3[N]; vector< short > adj[N]; short dfs_low[N], dfs_num[N], num = 0 ; int n , m , u , v , ans = 0 ; void DFS(short node,short prnt){ vis[node]=true; dfs_low[node]=dfs_num[node]=num++; for (short i = 0;i<adj[node].size();i++){ if (adj[node][i]==prnt) continue; if (vis[adj[node][i]]){ dfs_low[node]=min(dfs_low[node],dfs_num[adj[node][i]]); } else { DFS(adj[node][i],node); if (dfs_num[node] < dfs_low[adj[node][i]] && !vis3[node][adj[node][i]]){ printf("%d %d\n",node,adj[node][i]); } dfs_low[node]=min(dfs_low[node],dfs_low[adj[node][i]]); } } } int main(){ scanf("%d%d",&n,&m); for (int i = 0 ; i <m;i++){ scanf("%d%d",&u,&v); if (vis2[u][v]){ vis3[u][v]=vis3[v][u]=true; continue; } vis2[u][v]=vis2[v][u]=true; adj[u].push_back(v); adj[v].push_back(u); } for (int i = 1 ; i <= n;i++) if (!vis[i]) DFS(i,-1); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 512 KB | Output is correct |
2 | Correct | 2 ms | 512 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 8 ms | 3712 KB | Output is correct |
2 | Correct | 9 ms | 3684 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 205 ms | 9208 KB | Output is correct |
2 | Correct | 213 ms | 7072 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 768 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 3 ms | 640 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 640 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 3 ms | 640 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 3 ms | 640 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 640 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 3 ms | 768 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |