Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Network Flow
- SDS 알고특강
- 알고리즘
- DP
- Baekjoon
- 이분탐색
- 최대 유량
- 백준
- 후기
- JOIN
- 프로그래머스
- SWTest
- INNER JOIN
- 메모이제이션
- 빅스비 스튜디오
- 세그먼트트리
- bixby studio
- 최대유량
- 빅스비
- SQL
- maximum flow
- SWEA
- ICPC
- backjoon
- BOJ
- 완전탐색
- 네트워크 플로우
- 삼성
- 분할정복
- 코딩테스트
Archives
- Today
- Total
답은 알고리즘 뿐이야!
[BOJ 3640] 제독 본문
문제 출처 : https://www.acmicpc.net/problem/3640
풀이 :
MCMF 문제입니다.
1 을 source, V 를 sink로 잡고 mcmf를 해주시면 되는데
조건중에 정점 중복이 없다라는 말이 있으므로 정점 분할을 하고
V번 정점에서 V ' 번 정점으로 가는 Capacity를 2로,
S번 정점에서 S ' 번 정점으로 가는 Capacity를 충분히 준 후 MCMF를 돌리시면 됩니다.
아래는 2번째 인풋을 모델링 한 그림입니다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
#include<iostream>
#include<queue>
#include<vector>
using namespace std;
#define ms 2000
struct MCMF {
struct edge {
int to, c, f, w;
edge *d;
edge(int to1 = -1, int c1 = 0, int w1 = 0) :to(to1), c(c1), f(0), w(w1), d(nullptr) {}
int spare() { return c - f; }
void addFlow(int f1) {
f += f1;
d->f -= f1;
}
};
int S = 0, E, mc, mf, v, e, a, b, c;
vector<edge*>adj[ms];
void init() {
for (int i = 0; i < ms; i++) adj[i].clear();
mf = mc = 0;
}
void addEdge(int u, int v, int c, int w) {
edge *e1 = new edge(v, 1, w), *e2 = new edge(u, 0, -w);
e1->d = e2;
e2->d = e1;
adj[u].push_back(e1);
adj[v].push_back(e2);
}
int solve() {
while (1) {
int pre[ms];
edge* path[ms] = { 0 };
bool InQ[ms] = { 0 };
int dist[ms] = { 0 };
for (int i = 0; i < ms; i++) {
pre[i] = -1;
dist[i] = 1e9;
}
queue<int> q;
q.push(S);
dist[S] = 0;
while (!q.empty()) {
int now = q.front();
q.pop();
InQ[now] = false;
for (edge *e : adj[now]) {
int next = e->to;
if (e->spare() > 0 && dist[next] > dist[now] + e->w) {
pre[next] = now;
path[next] = e;
dist[next] = dist[now] + e->w;
if (!InQ[next]) {
q.push(next);
InQ[next] = true;
}
}
}
}
if (pre[E] == -1)break;
for (int i = E; i != S; i = pre[i]) {
path[i]->addFlow(1);
mc += path[i]->w;
}
mf++;
}
return mc;
}
void inp() {
while (cin >> v >> e) {
init();
for (int i = 0; i < v; i++) {
int u = i * 2, v = u + 1;
addEdge(u, v, 1, 0);
}
adj[(v - 1) * 2][0]->c = 2;
adj[S][0]->c = e;
E = (v - 1) * 2 + 1;
while (e--) {
cin >> a >> b >> c;
a--;
b--;
addEdge(a * 2 + 1, b * 2, 1, c);
}
cout << solve() << '\n';
}
}
};
int main() {
ios::sync_with_stdio(false), cin.tie(0);
MCMF mcmf;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
'알고리즘 > 백준문제풀이' 카테고리의 다른 글
[BOJ 4354] 문자열 제곱 (0) | 2020.05.01 |
---|---|
[BOJ 1031] 스타 대결 (0) | 2020.03.20 |
[BOJ 2367] 파티 (0) | 2020.03.08 |
[BOJ 13511] 트리와 쿼리 2 (0) | 2020.02.19 |
[BOJ 14247] 나무 자르기 (0) | 2020.02.14 |
Comments