#x1073. CFP1288F Red-Blue Graph
CFP1288F Red-Blue Graph
Red-Blue Graph
题面翻译
有一张二分图,左边有 个点,右边有 个点, 条边。每个点可能有一种颜色 R
或者 B
,也可能没有,也就是 U
。现在要给一些边染色,把边染成 R
要花费 的代价,把边染成 B
要花费 的代价,要求对于每个颜色为 R
的点,与之相邻的边中 R
的边严格多于 B
的边;对于每个颜色为 B
的点,与之相邻的边中 B
的边严格多于 R
的边。求花费最小的方案,输出任意一种,无解输出 。其中 。
题目描述
You are given a bipartite graph: the first part of this graph contains vertices, the second part contains vertices, and there are edges. The graph can contain multiple edges.
Initially, each edge is colorless. For each edge, you may either leave it uncolored (it is free), paint it red (it costs coins) or paint it blue (it costs coins). No edge can be painted red and blue simultaneously.
There are three types of vertices in this graph — colorless, red and blue. Colored vertices impose additional constraints on edges' colours:
- for each red vertex, the number of red edges indicent to it should be strictly greater than the number of blue edges incident to it;
- for each blue vertex, the number of blue edges indicent to it should be strictly greater than the number of red edges incident to it.
Colorless vertices impose no additional constraints.
Your goal is to paint some (possibly none) edges so that all constraints are met, and among all ways to do so, you should choose the one with minimum total cost.
输入格式
The first line contains five integers , , , and ( ) — the number of vertices in the first part, the number of vertices in the second part, the number of edges, the amount of coins you have to pay to paint an edge red, and the amount of coins you have to pay to paint an edge blue, respectively.
The second line contains one string consisting of characters. Each character is either U, R or B. If the -th character is U, then the -th vertex of the first part is uncolored; R corresponds to a red vertex, and B corresponds to a blue vertex.
The third line contains one string consisting of characters. Each character is either U, R or B. This string represents the colors of vertices of the second part in the same way.
Then lines follow, the -th line contains two integers and ( , ) denoting an edge connecting the vertex from the first part and the vertex from the second part.
The graph may contain multiple edges.
输出格式
If there is no coloring that meets all the constraints, print one integer .
Otherwise, print an integer denoting the total cost of coloring, and a string consisting of characters. The -th character should be U if the -th edge should be left uncolored, R if the -th edge should be painted red, or B if the -th edge should be painted blue. If there are multiple colorings with minimum possible cost, print any of them.
样例 #1
样例输入 #1
3 2 6 10 15
RRB
UB
3 2
2 2
1 2
1 1
2 1
1 1
样例输出 #1
35
BUURRU
样例 #2
样例输入 #2
3 1 3 4 5
RRR
B
2 1
1 1
3 1
样例输出 #2
-1
样例 #3
样例输入 #3
3 1 3 4 5
URU
B
2 1
1 1
3 1
样例输出 #3
14
RBB