結果

問題 No.1123 Afforestation
ユーザー e869120e869120
提出日時 2020-07-22 21:14:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 717 ms / 2,500 ms
コード長 3,376 bytes
コンパイル時間 1,069 ms
コンパイル使用メモリ 85,588 KB
実行使用メモリ 132,988 KB
最終ジャッジ日時 2024-06-22 11:57:51
合計ジャッジ時間 16,674 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,632 KB
testcase_01 AC 3 ms
7,760 KB
testcase_02 AC 3 ms
7,780 KB
testcase_03 AC 4 ms
8,220 KB
testcase_04 AC 13 ms
13,212 KB
testcase_05 AC 101 ms
44,172 KB
testcase_06 AC 564 ms
126,672 KB
testcase_07 AC 3 ms
7,768 KB
testcase_08 AC 3 ms
7,772 KB
testcase_09 AC 3 ms
7,804 KB
testcase_10 AC 4 ms
8,044 KB
testcase_11 AC 9 ms
15,252 KB
testcase_12 AC 58 ms
25,956 KB
testcase_13 AC 707 ms
131,012 KB
testcase_14 AC 3 ms
7,776 KB
testcase_15 AC 3 ms
7,788 KB
testcase_16 AC 3 ms
7,932 KB
testcase_17 AC 3 ms
8,008 KB
testcase_18 AC 4 ms
10,184 KB
testcase_19 AC 15 ms
13,492 KB
testcase_20 AC 164 ms
44,320 KB
testcase_21 AC 717 ms
130,868 KB
testcase_22 AC 691 ms
130,972 KB
testcase_23 AC 717 ms
132,988 KB
testcase_24 AC 695 ms
131,052 KB
testcase_25 AC 655 ms
130,996 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 75 ms
9,856 KB
testcase_29 AC 3 ms
6,940 KB
testcase_30 AC 3 ms
6,940 KB
testcase_31 AC 74 ms
13,976 KB
testcase_32 AC 3 ms
7,636 KB
testcase_33 AC 3 ms
7,768 KB
testcase_34 AC 4 ms
8,240 KB
testcase_35 AC 4 ms
8,108 KB
testcase_36 AC 4 ms
7,820 KB
testcase_37 AC 3 ms
7,812 KB
testcase_38 AC 3 ms
7,816 KB
testcase_39 AC 4 ms
8,148 KB
testcase_40 AC 4 ms
8,152 KB
testcase_41 AC 5 ms
10,204 KB
testcase_42 AC 9 ms
11,148 KB
testcase_43 AC 20 ms
13,352 KB
testcase_44 AC 38 ms
21,316 KB
testcase_45 AC 37 ms
21,320 KB
testcase_46 AC 41 ms
22,028 KB
testcase_47 AC 42 ms
23,916 KB
testcase_48 AC 3 ms
7,764 KB
testcase_49 AC 3 ms
7,768 KB
testcase_50 AC 4 ms
8,236 KB
testcase_51 AC 4 ms
8,236 KB
testcase_52 AC 3 ms
7,808 KB
testcase_53 AC 3 ms
7,816 KB
testcase_54 AC 3 ms
7,816 KB
testcase_55 AC 5 ms
10,208 KB
testcase_56 AC 4 ms
8,276 KB
testcase_57 AC 5 ms
10,112 KB
testcase_58 AC 9 ms
11,140 KB
testcase_59 AC 19 ms
13,352 KB
testcase_60 AC 35 ms
17,216 KB
testcase_61 AC 36 ms
17,356 KB
testcase_62 AC 42 ms
21,932 KB
testcase_63 AC 40 ms
17,948 KB
testcase_64 AC 3 ms
7,784 KB
testcase_65 AC 3 ms
7,784 KB
testcase_66 AC 3 ms
8,024 KB
testcase_67 AC 3 ms
7,892 KB
testcase_68 AC 5 ms
10,204 KB
testcase_69 AC 7 ms
10,968 KB
testcase_70 AC 10 ms
11,276 KB
testcase_71 AC 19 ms
13,476 KB
testcase_72 AC 3 ms
6,940 KB
testcase_73 AC 2 ms
6,940 KB
testcase_74 AC 2 ms
6,944 KB
testcase_75 AC 3 ms
7,772 KB
testcase_76 AC 2 ms
6,944 KB
testcase_77 AC 3 ms
7,760 KB
testcase_78 AC 2 ms
6,940 KB
testcase_79 AC 2 ms
6,944 KB
testcase_80 AC 2 ms
6,940 KB
testcase_81 AC 2 ms
6,940 KB
testcase_82 AC 3 ms
7,632 KB
testcase_83 AC 3 ms
7,792 KB
testcase_84 AC 377 ms
128,720 KB
testcase_85 AC 500 ms
130,912 KB
testcase_86 AC 2 ms
6,944 KB
testcase_87 AC 2 ms
6,944 KB
testcase_88 AC 352 ms
99,968 KB
testcase_89 AC 356 ms
116,544 KB
testcase_90 AC 3 ms
7,768 KB
testcase_91 AC 2 ms
6,944 KB
testcase_92 AC 3 ms
7,772 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