# |
제출 시각 |
아이디 |
문제 |
언어 |
결과 |
실행 시간 |
메모리 |
54794 |
2018-07-05T05:47:43 Z |
윤교준(#1510) |
Pipes (CEOI15_pipes) |
C++11 |
|
4449 ms |
11320 KB |
#include <bits/stdc++.h>
#define pb push_back
#define eb emplace_back
#define sz(V) ((int)(V).size())
#define allv(V) ((V).begin()),((V).end())
#define befv(V) ((V)[sz(V)-2])
#define sorv(V) sort(allv(V))
#define revv(V) reverse(allv(V))
#define univ(V) (V).erase(unique(allv(V)),(V).end())
#define upmax(a,b) (a)=max((a),(b))
#define upmin(a,b) (a)=min((a),(b))
#define rb(x) ((x)&(-(x)))
#define INF (0x3f3f3f3f)
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
int GE[100001], GD[300005], GI[300005], Gn = 100001;
int prt[100001][17], dep[100001];
int ud[100001], cnt[2][100001];
bitset<100001> chk;
int N, M;
int uf(int i) { return i == ud[i] ? i : (ud[i] = uf(ud[i])); }
void uf(int a, int b) { ud[uf(b)] = uf(a); }
int lca(int a, int b) {
if(dep[a] > dep[b]) swap(a, b);
const int dt = dep[b] - dep[a];
for(int i = 0; i < 17; i++) if(dt & (1<<i))
b = prt[b][i];
if(a == b) return a;
for(int i = 16; ~i; i--) if(prt[a][i] != prt[b][i]) {
a = prt[a][i]; b = prt[b][i];
}
return prt[a][0];
}
void f(int i) {
for(int gi = i, v;;) {
v = GD[gi];
if(!v || !gi || gi == GE[i]) break;
if(!dep[v]) {
prt[v][0] = i;
dep[v] = dep[i] + 1;
f(v);
}
gi = GI[gi];
}
}
void g(int i) {
for(int gi = i, v;;) {
v = GD[gi];
if(!v || !gi || gi == GE[i]) break;
if(dep[i] < dep[v]) {
g(v);
cnt[1][i] += cnt[1][v];
}
gi = GI[gi];
}
cnt[1][i] -= cnt[0][i];
chk[i] = !!cnt[1][i];
}
int main() {
//freopen("input.txt", "r", stdin);
ios::sync_with_stdio(false); cin.tie(0);
cin >> N >> M;
iota(ud, ud+N+1, 0);
iota(GE, GE+N+1, 0);
for(int i = 0, a, b; i < M; i++) {
cin >> a >> b;
if(uf(a) == uf(b)) continue;
uf(a, b);
{
GD[GE[a]] = b;
GI[GE[a]] = Gn;
GE[a] = Gn;
Gn++;
}
{
GD[GE[b]] = a;
GI[GE[b]] = Gn;
GE[b] = Gn;
Gn++;
}
}
for(int i = 1; i <= N; i++) {
if(dep[i]) continue;
dep[i] = 1;
f(i);
}
for(int j = 1; j < 17; j++) for(int i = 1; i <= N; i++)
prt[i][j] = prt[prt[i][j-1]][j-1];
cin.seekg(0, std::ios::beg);
cin >> N >> M;
for(int i = 0, a, b, c; i < M; i++) {
cin >> a >> b;
if(dep[a] > dep[b]) swap(a, b);
if(prt[b][0] == a && !chk[b]) {
chk[b] = true;
continue;
}
c = lca(a, b);
if(a == c) {
cnt[0][a]++;
cnt[1][b]++;
} else {
cnt[0][c] += 2;
cnt[1][a]++;
cnt[1][b]++;
}
}
chk.reset();
for(int i = 1; i <= N; i++) if(1 == dep[i]) g(i);
for(int i = 1; i <= N; i++) if(1 < dep[i] && !chk[i])
printf("%d %d\n", i, prt[i][0]);
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
384 KB |
Output is correct |
2 |
Correct |
2 ms |
384 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
8 ms |
896 KB |
Output is correct |
2 |
Correct |
7 ms |
896 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
243 ms |
788 KB |
Output is correct |
2 |
Correct |
240 ms |
804 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
435 ms |
1484 KB |
Output is correct |
2 |
Correct |
510 ms |
1528 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
790 ms |
3064 KB |
Output is correct |
2 |
Correct |
688 ms |
3660 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1438 ms |
7972 KB |
Output is correct |
2 |
Correct |
1216 ms |
8188 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2245 ms |
9232 KB |
Output is correct |
2 |
Correct |
1831 ms |
9336 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2923 ms |
11236 KB |
Output is correct |
2 |
Correct |
2591 ms |
11284 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3576 ms |
11256 KB |
Output is correct |
2 |
Correct |
3469 ms |
11276 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4449 ms |
10688 KB |
Output is correct |
2 |
Correct |
3625 ms |
11320 KB |
Output is correct |