結果

問題 No.459 C-VS for yukicoder
ユーザー くれちーくれちー
提出日時 2016-12-10 23:45:27
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,938 bytes
コンパイル時間 1,080 ms
コンパイル使用メモリ 68,736 KB
実行使用メモリ 11,972 KB
最終ジャッジ日時 2023-08-19 10:38:39
合計ジャッジ時間 7,742 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdlib>
#include <ctime>
#include <iostream>
#include <vector>
#include <string>

using namespace std;
typedef vector<int> vi;

int getrand(int min, int max) {
	static int f = 1;
	if (f) {
		srand((unsigned int)time(NULL));
		f = 0;
	}
	return min + (int)(rand() * (max - min + 1.0) / (1.0 + RAND_MAX));
}

int sum_(vi d) {
	int i, s = 0;
	for (i = 0; i < d.size(); i++)
		if (d[i] != -1) s += d[i];
	return s;
}

int check(vector<vi> list, vi list2, int n, int w) {
	int s, i, j;
	for (i = 0; i < n; i++) {
		s = 0;
		for (j = 0; j < w; j++) s += list[i][w];
		if (s != list2[i]) return 0;
	}
	return 1;
}

int main() {
	int h, w, n, c, i, j, k;
	cin >> h >> w >> n;

	string s;
	vi state(w), ctate(w);
	vector<vi> clist(n, vi(w)), clist_(n, vi(w));

	for (i = 0; i < h; i++) {
		cin >> s;
		for (j = 0; j < w; j++) {
			if (s[j] == '#') state[j]++;
		}
	}

	for (i = 0; i < n; i++) {
		cin >> c;
		for (j = c; j < c + 3; j++) ctate[j]++;
		for (j = 0; j < c; j++) clist[i][j] = -1;
		for (j = c + 3; j < w; j++) clist[i][j] = -1;
	}

	for (i = 0; i < w; i++) {
		if (ctate[i] == 1) {
			for (j = 0; j < n; j++) {
				if (clist[j][i] != -1) {
					clist[j][i] = state[i];
					break;
				}
			}
		}
	}

	while (!check(clist_, state, n, w)) {
		copy(clist.begin(), clist.end(), clist_.begin());
		for (i = 0; i < w; i++) {
			vi tmp(n);
			for (j = 0; j < n; j++) {
				if (clist_[j][i] == -1) {
					tmp[j] = -1;
					continue;
				}
				tmp[j] = getrand(0, 3);
				if (sum_(tmp) > state[i]) j--;
			}
			if (sum_(tmp) != state[i]) i--;
			else for (j = 0; j < n; j++) clist_[j][i] = tmp[j];
		}
	}
	copy(clist_.begin(), clist_.end(), clist.begin());


	for (i = 0; i < n; i++) {
		int t = 0;
		while (clist[i][t] == -1) t++;
		for (j = 0; j < 3; j++) {
			for (k = 0; k < 3; k++) {
				if (clist[i][t + k] > 0) {
					cout << "#";
					clist[i][t + k]--;
				}
				else cout << ".";
			}
			cout << "\n";
		}
	}

	return 0;
}
0