日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

HDU Problem - 3338 Kakuro Extension (最大流,建图)

發布時間:2024/4/18 编程问答 37 豆豆
生活随笔 收集整理的這篇文章主要介紹了 HDU Problem - 3338 Kakuro Extension (最大流,建图) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

題目鏈接

Problem Description

If you solved problem like this, forget it.Because you need to use a completely different algorithm to solve the following one.Kakuro puzzle is played on a grid of “black” and “white” cells. Apart from the top row and leftmost column which are entirely black, the grid has some amount of white cells which form “runs” and some amount of black cells. “Run” is a vertical or horizontal maximal one-lined block of adjacent white cells. Each row and column of the puzzle can contain more than one “run”. Every white cell belongs to exactly two runs — one horizontal and one vertical run. Each horizontal “run” always has a number in the black half-cell to its immediate left, and each vertical “run” always has a number in the black half-cell immediately above it. These numbers are located in “black” cells and are called “clues”.The rules of the puzzle are simple: 1.place a single digit from 1 to 9 in each “white” cell2.for all runs, the sum of all digits in a “run” must match the clue associated with the “run”Given the grid, your task is to find a solution for the puzzle.                      Picture of the first sample input            Picture of the first sample output

Input

The first line of input contains two integers n and m (2 ≤ n,m ≤ 100) — the number of rows and columns correspondingly. Each of the next n lines contains descriptions of m cells. Each cell description is one of the following 7-character strings: …….— “white” cell;XXXXXXX— “black” cell with no clues;AAA\BBB— “black” cell with one or two clues. AAA is either a 3-digit clue for the corresponding vertical run, or XXX if there is no associated vertical run. BBB is either a 3-digit clue for the corresponding horizontal run, or XXX if there is no associated horizontal run.The first row and the first column of the grid will never have any white cells. The given grid will have at least one “white” cell.It is guaranteed that the given puzzle has at least one solution.

Output

Print n lines to the output with m cells in each line. For every “black” cell print ‘_’ (underscore), for every “white” cell print the corresponding digit from the solution. Delimit cells with a single space, so that each row consists of 2m-1 characters.If there are many solutions, you may output any of them.

Sample Input

6 6 XXXXXXX XXXXXXX 028\XXX 017\XXX 028\XXX XXXXXXX XXXXXXX 022\022 ....... ....... ....... 010\XXX XXX\034 ....... ....... ....... ....... ....... XXX\014 ....... ....... 016\013 ....... ....... XXX\022 ....... ....... ....... ....... XXXXXXX XXXXXXX XXX\016 ....... ....... XXXXXXX XXXXXXX 5 8 XXXXXXX 001\XXX 020\XXX 027\XXX 021\XXX 028\XXX 014\XXX 024\XXX XXX\035 ....... ....... ....... ....... ....... ....... ....... XXXXXXX 007\034 ....... ....... ....... ....... ....... ....... XXX\043 ....... ....... ....... ....... ....... ....... ....... XXX\030 ....... ....... ....... ....... ....... ....... XXXXXXX

Sample Output

_ _ _ _ _ _ _ _ 5 8 9 _ _ 7 6 9 8 4 _ 6 8 _ 7 6 _ 9 2 7 4 _ _ _ 7 9 _ _ _ _ _ _ _ _ _ _ _ 1 9 9 1 1 8 6 _ _ 1 7 7 9 1 9 _ 1 3 9 9 9 3 9 _ 6 7 2 4 9 2 _

AC

  • 根據游戲規則,每行每列的數字之和只受到相應的數字要求,這樣可以用最大流建邊寫
  • 建邊:
  • 假設流量是從上流入,然后從左流出
  • 如果只有下邊的數字,這個數字是它下面所有的白色格子的和,所以將這個格子和它下面所有的白格子建邊,權值為8(最大流的出的可能有0的流量),將這個格子和源點相連(默認流量從上流入)權值為數字 - 下方白色格子的個數(因為每個白格子建邊的時候都減1)
  • 同理只有右邊的數字,就讓右邊的格子和這個格子建邊(注意建邊方向,流量從左流出),權值為8,并將這個格子和匯點建邊,權值為數字 - 右邊白色格子的數量
  • 如果兩個數字同時存在,就拆點建邊,建邊過程同上
  • 因為需要判斷每個格子的信息,所以可以用一個結構體來存放每個格子的信息
  • 類型(黑色, 白色, 有數字)
  • 數字的大小
  • 100 * 100 的圖,所以最多可以建100 * 100 * 2 * 2 條邊,(建邊的時候默認兩條)
  • head數組應該開100 * 100 * 2
  • 最后跑一邊Dinic
#include <iostream> #include <stdio.h> #include <map> #include <vector> #include <queue> #include <algorithm> #include <cmath> #define N 20010 #include <cstring> #define ll long long #define P pair<int, int> #define mk make_pair using namespace std; struct ac{int v, c, pre; }edge[40001]; int head[N], dis[N], curedge[N], cnt; int inf = 0x3f3f3f3f; void addedge(int u, int v, int c) {edge[cnt].v = v;edge[cnt].c = c;edge[cnt].pre = head[u];head[u] = cnt++;swap(u, v);edge[cnt].v = v;edge[cnt].c = 0;edge[cnt].pre = head[u];head[u] = cnt++; } bool bfs(int s, int e) {queue<int> que;que.push(s);memset(dis, 0, sizeof(dis));dis[s] = 1;while (!que.empty()) {int t = que.front();que.pop();for (int i = head[t]; i != -1; i = edge[i].pre) {if (dis[edge[i].v] || edge[i].c == 0) continue;dis[edge[i].v] = dis[t] + 1;que.push(edge[i].v);} }return dis[e] != 0; } int dfs(int s, int e, int flow) {if (s == e) return flow;for (int &i = curedge[s]; i != -1; i = edge[i].pre) {if (dis[edge[i].v] == dis[s] + 1 && edge[i].c) {int d = dfs(edge[i].v, e, min(flow, edge[i].c));if (d > 0) {edge[i].c -= d;edge[i ^ 1].c += d;return d; }}}return 0; } int solve(int s, int e) {int sum = 0;while (bfs(s, e)) {for (int i = 0; i <= e; ++i) {curedge[i] = head[i];}int d;while (d = dfs(s, e, inf)) {sum += d;}}return sum; } // 每個格子的信息 struct point{// type 標記各自的類型// 黑色:-1, 白色0, 只有下1, 只有右2, 兩個都有3 // r 右邊數字的和 // d 下方數字的和 int type, r, d; }cell[120][120]; int main() { #ifndef ONLINE_JUDGEfreopen("in.txt", "r", stdin); #endif // ios::sync_with_stdio(false);int n, m;while (cin >> n >> m) {memset(head, -1, sizeof(head));cnt = 0;string s;// 讀入方格信息 for (int i = 1; i <= n; ++i) {for (int j = 1; j <= m; ++j) {cin >> s;if (s == "XXXXXXX") {cell[i][j].type = -1;}else if (s == ".......") {cell[i][j].type = 0;}else {int num1 = 0, num2 = 0;if (s[0] != 'X') {for (int k = 0; k < 3; ++k) {num1 = num1 * 10 + s[k] - '0';}}if (s[4] != 'X') {for (int k = 4; k <= 6; ++k) {num2 = num2 * 10 + s[k] - '0';}}if (num1 && num2) {cell[i][j].type = 3;cell[i][j].r = num2;cell[i][j].d = num1;}else if (num1) {cell[i][j].type = 1;cell[i][j].d = num1;}else {cell[i][j].type = 2;cell[i][j].r = num2;}}}}// 定義源點和匯點 int start = 0, end = n * m * 2 + 1;for (int i = 1; i <= n; ++i) {for (int j = 1; j <= m; ++j) {int type = cell[i][j].type;if (type == -1 || type == 0) continue;if (type == 1) {int sum = 0;for (int k = i + 1; k <= n; ++k) {if (cell[k][j].type != 0) break;sum++;addedge(i * m - m + j, k * m - m + j, 8);}addedge(start, i * m - m + j, cell[i][j].d - sum);}else if (type == 2) {int sum = 0;for (int k = j + 1; k <= m; ++k) {if (cell[i][k].type != 0) break;sum++;addedge(i * m - m + k, i * m - m + j, 8);}addedge(i * m - m + j, end, cell[i][j].r - sum);}else if (type == 3) {// 拆點 int sum;// 向下 sum = 0;for (int k = i + 1; k <= n; ++k) {if (cell[k][j].type != 0) break;sum++;addedge(i * m - m + j, k * m - m + j, 8);}addedge(start, i * m - m + j, cell[i][j].d - sum);// 向右 sum = 0;for (int k = j + 1; k <= m; ++k) {if (cell[i][k].type != 0) break;sum++;addedge(i * m - m + k, i * m - m + j + n * m, 8);}addedge(i * m - m + j + n * m, end, cell[i][j].r - sum);}}}solve(start, end);for (int i = 1; i <= n; ++i) {for (int j = 1; j <= m; ++j) {if (cell[i][j].type != 0) cout << "_";else {int sum = 0;cout << 8 - edge[head[i * m - m + j]].c + 1;}if (j == m) cout << endl; else cout << " ";}}}return 0; }

總結

以上是生活随笔為你收集整理的HDU Problem - 3338 Kakuro Extension (最大流,建图)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

主站蜘蛛池模板: 国产视频不卡 | 亚欧成人精品 | 免费欧美视频 | 国产ts系列 | 成人黄色在线观看视频 | 日韩一道本 | 欧洲综合色 | 日日射夜夜操 | 午夜激情福利在线 | 色图自拍偷拍 | 婷婷亚洲一区 | 黄色一级带| 黄色在线观看www | 国产不雅视频 | 中文字幕视频二区 | 456亚洲视频 | 欧美成人精品欧美一级 | 色偷偷免费费视频在线 | 九九热视频这里只有精品 | 欧美一区二区三区视频在线观看 | www.夜夜夜| 日韩在线视频一区二区三区 | 麻豆影视在线 | xxxxwww国产 | 97se在线视频 | 横恋母在线观看 | 国产女人水真多18毛片18精品 | 四虎精品| 精品人妻一区二区免费 | 欧美蜜桃视频 | 亚洲成在人 | 久久人人爽天天玩人人妻精品 | 国产素人在线 | 美女脱了内裤喂我喝尿视频 | 亚洲AV无码成人精品区在线观 | 日本精品一区二区在线观看 | sm在线看 | 正在播放老肥熟妇露脸 | 亚洲激情黄色 | 一区免费 | 影音先锋蜜桃 | 国产一区二区三区在线观看视频 | 亚洲素人| 色综合av在线 | 欧洲免费毛片 | 精品在线视频一区二区 | 成人国产片女人爽到高潮 | 国产精品久久久久久久久久久免费看 | 国内成人精品视频 | 欧美一级黄色录像 | 国产激情久久久久 | 免费美女视频网站 | 天天摸天天干 | 欧美变态口味重另类在线视频 | 欧美大片在线观看 | 丁香八月婷婷 | 隔壁邻居是巨爆乳寡妇 | 色婷婷av久久久久久久 | 日韩三级免费看 | 欧美激情aaa | 伊人精品 | 欧美一区二区三区免费 | 亚洲av日韩av永久无码下载 | 免费国产一级 | 午夜av福利 | 97伊人网| 搡8o老女人老妇人老熟 | 毛片随便看 | 免费一级a毛片夜夜看 | 淫片在线 | 久久久毛片 | 香蕉久久久久久 | 一级二级av | 亚洲a一区二区 | av每日更新在线观看 | 久久午夜鲁丝片午夜精品 | 国产一区二区三区免费看 | 美女调教视频 | 天天干天天拍 | 麻豆爱爱 | 波多野结衣视频在线看 | 久久夫妻视频 | 久久久精品一区二区 | 欧美xxxbbb| 精品日韩中文字幕 | 亚洲黄色短视频 | 超碰在线日韩 | 荡女精品导航 | 少妇系列在线观看 | 日本一区二区三区视频在线观看 | 91亚洲国产成人精品性色 | 天天爱天天干天天操 | 欧美黄色大片网站 | 成人片在线看 | 综合在线视频 | 亚洲av无码国产在丝袜线观看 | 大帝av | 久久久久无码国产精品 | 免费看黄色aaaaaa 片 |