Skip to content

Commit e1c0e55

Browse files
authored
Merge pull request #156 from yosupo06/patch/constraints
clarify constraints just in case
2 parents 929ab27 + 841ee3f commit e1c0e55

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

document_en/mincostflow.md

+1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ It returns $g$ as the list of the changepoints, that satisfies the followings.
7676
Let $x$ be the maximum cost among all edges.
7777

7878
- $s \neq t$
79+
- $0 \leq s, t \lt n$
7980
- You can't call `min_cost_slope` or `min_cost_max_flow` multiple times.
8081
- The total amount of the flow is in `Cap`.
8182
- The total cost of the flow is in `Cost`.

document_ja/mincostflow.md

+1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ vector<pair<Cap, Cost>> graph.slope(int s, int t, Cap flow_limit);
7676
辺のコストの最大を $x$ として
7777

7878
- $s \neq t$
79+
- $0 \leq s, t \lt n$
7980
- `min_cost_slope``min_cost_max_flow`を合わせて複数回呼んだときの挙動は未定義
8081
- `s`から`t`へ流したフローの流量が `Cap` に収まる。
8182
- 流したフローのコストの総和が `Cost` に収まる。

0 commit comments

Comments
 (0)