結果
問題 | No.459 C-VS for yukicoder |
ユーザー | くれちー |
提出日時 | 2016-12-10 22:11:44 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,983 bytes |
コンパイル時間 | 414 ms |
コンパイル使用メモリ | 25,304 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-05-06 17:50:24 |
合計ジャッジ時間 | 7,418 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
6,784 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 4 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 0 ms
5,376 KB |
testcase_10 | TLE | - |
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 | -- | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:48:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 48 | scanf("%d %d %d", &h, &w, &n); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.c:51:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 51 | scanf("%s", s); | ^~~~~~~~~~~~~~ main.c:58:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 58 | scanf("%d", &c); | ^~~~~~~~~~~~~~~
ソースコード
#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; } void copy(int *from, int *to, int size) { int i; for (i = 0; i < size; i++) to[i] = from[i]; return; } int check(int list[][10000], int n, int w) { int i; for (i = 0; i < n; i++) { if (sum(list[i], w) == -1 * (w - 3)) return 0; } return 1; } int main() { int h, w, n, c, i, j, k; static char s[10000]; static int state[10000] = {}; static int ctate[10000] = {}; static int clist[30000][10000] = {}; 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, n, w)) { 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++) { 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; }