結果

問題 No.459 C-VS for yukicoder
ユーザー くれちーくれちー
提出日時 2016-12-10 23:59:26
言語 C90
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 2,134 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 28,692 KB
実行使用メモリ 12,540 KB
最終ジャッジ日時 2023-08-19 10:39:18
合計ジャッジ時間 6,921 ms
ジャッジサーバーID
(参考情報)
judge9 / judge10
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 <stdio.h>
#include <stdlib.h>
#include <time.h>

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(int *d, int size) {
	int i, s = 0;
	for (i = 0; i < size; i++) s += d[i];
	return s;
}

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

int check(int list[][1000], int *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][j];
		if (s != list2[i]) return 0;
	}
	return 1;
}

int main() {
	int h, w, n, c, i, j, k;
	static char s[1000];
	static int state[1000] = {};
	static int ctate[1000] = {};
	static int clist[3000][1000] = {};
	static int clist_[3000][1000] = {};

	scanf("%d %d %d", &h, &w, &n);

	for (i = 0; i < h; i++) {
		scanf("%s", s);
		for (j = 0; j < w; j++) {
			if (s[j] == '#') state[j]++;
		}
	}

	for (i = 0; i < n; i++) {
		scanf("%d", &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)) {
		for (i = 0; i < n; i++)
			for (j = 0; j < w; j++)
				clist_[i][j] = clist[i][j];
		for (i = 0; i < w; i++) {
			int tmp[30000];
			for (j = 0; j < n; j++) {
				if (clist_[j][i] == -1) {
					tmp[j] = -1;
					continue;
				}
				tmp[j] = getrand(0, 3);
				if (sum_(tmp, n) > state[i]) j--;
			}
			if (sum_(tmp, n) != state[i]) i--;
			else for (j = 0; j < n; j++) clist_[j][i] = tmp[j];
		}
	}
	for (i = 0; i < n; i++)
		for (j = 0; j < w; j++)
			clist[i][j] = clist_[i][j];

	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) {
					printf("#");
					clist[i][t + k]--;
				}
				else printf(".");
			}
			printf("\n");
		}
	}

	return 0;
}
0