結果

問題 No.1123 Afforestation
ユーザー e869120e869120
提出日時 2020-07-22 21:14:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 665 ms / 2,500 ms
コード長 3,376 bytes
コンパイル時間 1,154 ms
コンパイル使用メモリ 84,960 KB
実行使用メモリ 131,008 KB
最終ジャッジ日時 2023-09-04 13:29:48
合計ジャッジ時間 18,146 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,780 KB
testcase_01 AC 2 ms
7,604 KB
testcase_02 AC 3 ms
7,684 KB
testcase_03 AC 4 ms
8,172 KB
testcase_04 AC 12 ms
13,112 KB
testcase_05 AC 91 ms
42,144 KB
testcase_06 AC 518 ms
124,372 KB
testcase_07 AC 3 ms
7,564 KB
testcase_08 AC 2 ms
7,616 KB
testcase_09 AC 3 ms
7,692 KB
testcase_10 AC 3 ms
7,872 KB
testcase_11 AC 7 ms
11,136 KB
testcase_12 AC 52 ms
25,772 KB
testcase_13 AC 646 ms
130,816 KB
testcase_14 AC 3 ms
7,872 KB
testcase_15 AC 3 ms
7,672 KB
testcase_16 AC 3 ms
7,644 KB
testcase_17 AC 3 ms
7,760 KB
testcase_18 AC 4 ms
7,988 KB
testcase_19 AC 14 ms
13,340 KB
testcase_20 AC 147 ms
44,228 KB
testcase_21 AC 658 ms
130,676 KB
testcase_22 AC 636 ms
130,808 KB
testcase_23 AC 665 ms
130,928 KB
testcase_24 AC 645 ms
130,776 KB
testcase_25 AC 599 ms
131,008 KB
testcase_26 AC 2 ms
5,520 KB
testcase_27 AC 2 ms
5,536 KB
testcase_28 AC 80 ms
9,768 KB
testcase_29 AC 2 ms
5,536 KB
testcase_30 AC 2 ms
5,580 KB
testcase_31 AC 77 ms
13,876 KB
testcase_32 AC 3 ms
7,664 KB
testcase_33 AC 3 ms
7,604 KB
testcase_34 AC 4 ms
8,008 KB
testcase_35 AC 4 ms
7,932 KB
testcase_36 AC 2 ms
7,660 KB
testcase_37 AC 3 ms
7,700 KB
testcase_38 AC 3 ms
7,656 KB
testcase_39 AC 4 ms
7,972 KB
testcase_40 AC 4 ms
7,948 KB
testcase_41 AC 5 ms
8,268 KB
testcase_42 AC 8 ms
11,032 KB
testcase_43 AC 18 ms
13,240 KB
testcase_44 AC 34 ms
17,280 KB
testcase_45 AC 33 ms
17,104 KB
testcase_46 AC 38 ms
17,788 KB
testcase_47 AC 38 ms
17,640 KB
testcase_48 AC 3 ms
7,668 KB
testcase_49 AC 3 ms
7,672 KB
testcase_50 AC 4 ms
7,912 KB
testcase_51 AC 4 ms
7,952 KB
testcase_52 AC 2 ms
7,648 KB
testcase_53 AC 3 ms
7,612 KB
testcase_54 AC 3 ms
7,716 KB
testcase_55 AC 4 ms
7,968 KB
testcase_56 AC 4 ms
8,032 KB
testcase_57 AC 4 ms
7,980 KB
testcase_58 AC 8 ms
11,012 KB
testcase_59 AC 17 ms
13,276 KB
testcase_60 AC 32 ms
17,248 KB
testcase_61 AC 32 ms
17,040 KB
testcase_62 AC 38 ms
17,708 KB
testcase_63 AC 37 ms
17,800 KB
testcase_64 AC 3 ms
7,592 KB
testcase_65 AC 3 ms
7,876 KB
testcase_66 AC 3 ms
7,784 KB
testcase_67 AC 3 ms
7,732 KB
testcase_68 AC 4 ms
8,036 KB
testcase_69 AC 6 ms
8,628 KB
testcase_70 AC 8 ms
11,048 KB
testcase_71 AC 18 ms
13,168 KB
testcase_72 AC 2 ms
5,520 KB
testcase_73 AC 3 ms
5,568 KB
testcase_74 AC 2 ms
5,616 KB
testcase_75 AC 3 ms
7,680 KB
testcase_76 AC 2 ms
5,564 KB
testcase_77 AC 3 ms
7,788 KB
testcase_78 AC 1 ms
4,376 KB
testcase_79 AC 2 ms
4,380 KB
testcase_80 AC 2 ms
5,600 KB
testcase_81 AC 3 ms
5,556 KB
testcase_82 AC 3 ms
7,560 KB
testcase_83 AC 3 ms
7,628 KB
testcase_84 AC 336 ms
126,544 KB
testcase_85 AC 473 ms
130,772 KB
testcase_86 AC 2 ms
5,532 KB
testcase_87 AC 2 ms
5,584 KB
testcase_88 AC 322 ms
99,852 KB
testcase_89 AC 327 ms
122,692 KB
testcase_90 AC 3 ms
7,656 KB
testcase_91 AC 2 ms
5,512 KB
testcase_92 AC 2 ms
7,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
#pragma warning (disable: 4996)

struct Node {
	int to, cap, rev;
};

class MaxFlow {
public:
	vector<Node> G[5009];
	bool used[5009];

	void add_edge(int u, int v, int c, int d) {
		G[u].push_back(Node{ v, c - d, (int)G[v].size() });
		G[v].push_back(Node{ u, d, (int)G[u].size() - 1 });
	}
	int dfs(int pos, int to, int f) {
		if (pos == to) return f;
		used[pos] = true;
		for (int i = 0; i < G[pos].size(); i++) {
			if (used[G[pos][i].to] == true || G[pos][i].cap == 0) continue;
			int F = dfs(G[pos][i].to, to, min(f, G[pos][i].cap));
			if (F == 0) continue;
			G[pos][i].cap -= F;
			G[G[pos][i].to][G[pos][i].rev].cap += F;
			return F;
		}
		return 0;
	}
	int max_flow(int u, int v) {
		int f = 0;
		while (true) {
			for (int i = 0; i < 5009; i++) used[i] = false;
			int g = dfs(u, v, 100000007); f += g;
			if (g == 0) break;
		}
		return f;
	}
};

// 入力
int H, A[2509];
int W, B[2509];
int K, X[19], Y[19];

// その他
int Answer[2509][2509];
bool used[2509][2509];
bool forced[2509][2509];
MaxFlow G;

int main() {
	// 入力
	cin >> H >> W;
	for (int i = 1; i <= H; i++) cin >> A[i];
	for (int i = 1; i <= W; i++) cin >> B[i];
	cin >> K;
	for (int i = 1; i <= K; i++) cin >> X[i] >> Y[i];

	// 貪欲法
	vector<pair<int, int>> CA, CB;
	for (int i = 1; i <= K; i++) forced[X[i]][Y[i]] = true;
	for (int i = 1; i <= H; i++) CA.push_back(make_pair(A[i], i));
	for (int i = 1; i <= W; i++) CB.push_back(make_pair(B[i], i));
	sort(CA.begin(), CA.end()); reverse(CA.begin(), CA.end());
	sort(CB.begin(), CB.end()); reverse(CB.begin(), CB.end());
	for (int i = 0; i < H; i++) {
		for (int j = 0; j < CA[i].first; j++) used[CA[i].second][CB[j].second] = true;
		for (int j = 0; j < CA[i].first; j++) CB[j].first -= 1;
		sort(CB.begin(), CB.end()); reverse(CB.begin(), CB.end());
	}
	if (CB[0].first >= 1) {
		printf(":(\n");
		return 0;
	}

	// 判定
	int SA = 0; for (int i = 1; i <= H; i++) SA += A[i];
	int SB = 0; for (int i = 1; i <= W; i++) SB += B[i];
	if (SA != SB) {
		printf(":(\n");
		return 0;
	}

	// 家の部分を消去
	int cnts = 0;
	for (int i = 1; i <= K; i++) {
		if (used[X[i]][Y[i]] == false) continue;
		used[X[i]][Y[i]] = false; cnts++;
	}

	// 辺を貼る
	for (int i = 1; i <= H; i++) {
		for (int j = 1; j <= W; j++) {
			if (forced[i][j] == true) continue;
			G.add_edge(i, H + j, 1, (int)used[i][j]);
		}
	}
	for (int i = 1; i <= H; i++) {
		int cnts = 0;
		for (int j = 1; j <= W; j++) cnts += (int)used[i][j];
		G.add_edge(H + W + 1, i, A[i], cnts);
	}
	for (int i = 1; i <= W; i++) {
		int cnts = 0;
		for (int j = 1; j <= H; j++) cnts += used[j][i];
		G.add_edge(H + i, H + W + 2, B[i], cnts);
	}

	// フローを流す
	int Ret = G.max_flow(H + W + 1, H + W + 2);
	if (Ret != cnts) {
		printf(":(\n");
		return 0;
	}

	// 復元する
	for (int i = 1; i <= H; i++) {
		for (int j = 0; j < G.G[i].size(); j++) {
			int pos = G.G[i][j].to; if (pos <= H || pos >= H + W + 1) continue;
			if (G.G[i][j].cap == 0) Answer[i][pos - H] = 1;
		}
	}
	for (int i = 1; i <= K; i++) Answer[X[i]][Y[i]] = 2;

	// 出力
	printf("Yay!\n");
	for (int i = 1; i <= H; i++) {
		for (int j = 1; j <= W; j++) {
			if (Answer[i][j] == 0) printf(".");
			if (Answer[i][j] == 1) printf("o");
			if (Answer[i][j] == 2) printf("x");
		}
		printf("\n");
	}
	return 0;
}
0