結果

問題 No.1123 Afforestation
ユーザー e869120e869120
提出日時 2020-07-02 23:59:29
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 635 ms / 2,500 ms
コード長 3,376 bytes
コンパイル時間 1,017 ms
コンパイル使用メモリ 84,984 KB
実行使用メモリ 130,820 KB
最終ジャッジ日時 2023-10-14 23:32:49
合計ジャッジ時間 15,378 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,596 KB
testcase_01 AC 2 ms
7,584 KB
testcase_02 AC 3 ms
7,616 KB
testcase_03 AC 3 ms
8,100 KB
testcase_04 AC 12 ms
13,160 KB
testcase_05 AC 84 ms
42,120 KB
testcase_06 AC 511 ms
126,500 KB
testcase_07 AC 3 ms
7,604 KB
testcase_08 AC 3 ms
7,636 KB
testcase_09 AC 3 ms
7,648 KB
testcase_10 AC 3 ms
7,872 KB
testcase_11 AC 8 ms
10,988 KB
testcase_12 AC 50 ms
25,792 KB
testcase_13 AC 630 ms
130,784 KB
testcase_14 AC 3 ms
7,684 KB
testcase_15 AC 2 ms
7,632 KB
testcase_16 AC 2 ms
7,800 KB
testcase_17 AC 3 ms
7,780 KB
testcase_18 AC 4 ms
7,960 KB
testcase_19 AC 13 ms
13,196 KB
testcase_20 AC 140 ms
44,208 KB
testcase_21 AC 635 ms
130,608 KB
testcase_22 AC 614 ms
130,756 KB
testcase_23 AC 629 ms
130,792 KB
testcase_24 AC 609 ms
130,800 KB
testcase_25 AC 570 ms
130,820 KB
testcase_26 AC 2 ms
5,588 KB
testcase_27 AC 2 ms
5,528 KB
testcase_28 AC 78 ms
9,788 KB
testcase_29 AC 2 ms
5,552 KB
testcase_30 AC 2 ms
5,592 KB
testcase_31 AC 75 ms
13,928 KB
testcase_32 AC 2 ms
7,620 KB
testcase_33 AC 2 ms
7,604 KB
testcase_34 AC 3 ms
7,956 KB
testcase_35 AC 3 ms
7,972 KB
testcase_36 AC 2 ms
7,660 KB
testcase_37 AC 2 ms
7,696 KB
testcase_38 AC 3 ms
7,904 KB
testcase_39 AC 3 ms
8,040 KB
testcase_40 AC 3 ms
8,188 KB
testcase_41 AC 3 ms
7,980 KB
testcase_42 AC 7 ms
10,988 KB
testcase_43 AC 16 ms
13,356 KB
testcase_44 AC 31 ms
17,080 KB
testcase_45 AC 31 ms
17,172 KB
testcase_46 AC 33 ms
17,688 KB
testcase_47 AC 35 ms
17,744 KB
testcase_48 AC 2 ms
7,868 KB
testcase_49 AC 2 ms
7,716 KB
testcase_50 AC 3 ms
7,972 KB
testcase_51 AC 3 ms
7,932 KB
testcase_52 AC 2 ms
7,696 KB
testcase_53 AC 2 ms
7,716 KB
testcase_54 AC 2 ms
7,716 KB
testcase_55 AC 3 ms
7,996 KB
testcase_56 AC 4 ms
8,024 KB
testcase_57 AC 3 ms
8,188 KB
testcase_58 AC 7 ms
11,040 KB
testcase_59 AC 16 ms
13,252 KB
testcase_60 AC 28 ms
17,108 KB
testcase_61 AC 29 ms
17,240 KB
testcase_62 AC 34 ms
17,812 KB
testcase_63 AC 33 ms
17,976 KB
testcase_64 AC 2 ms
7,608 KB
testcase_65 AC 2 ms
7,652 KB
testcase_66 AC 2 ms
7,720 KB
testcase_67 AC 3 ms
7,724 KB
testcase_68 AC 4 ms
8,060 KB
testcase_69 AC 5 ms
8,628 KB
testcase_70 AC 7 ms
10,984 KB
testcase_71 AC 16 ms
13,260 KB
testcase_72 AC 2 ms
5,588 KB
testcase_73 AC 2 ms
5,668 KB
testcase_74 AC 1 ms
5,596 KB
testcase_75 AC 1 ms
7,620 KB
testcase_76 AC 1 ms
5,572 KB
testcase_77 AC 2 ms
7,652 KB
testcase_78 AC 2 ms
4,352 KB
testcase_79 AC 1 ms
4,348 KB
testcase_80 AC 2 ms
5,564 KB
testcase_81 AC 1 ms
5,748 KB
testcase_82 AC 2 ms
7,728 KB
testcase_83 AC 2 ms
7,636 KB
testcase_84 AC 318 ms
126,616 KB
testcase_85 AC 447 ms
130,632 KB
testcase_86 AC 2 ms
5,560 KB
testcase_87 AC 2 ms
5,632 KB
testcase_88 AC 301 ms
99,920 KB
testcase_89 AC 309 ms
122,728 KB
testcase_90 AC 3 ms
7,656 KB
testcase_91 AC 2 ms
5,556 KB
testcase_92 AC 2 ms
7,616 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