結果
問題 | No.459 C-VS for yukicoder |
ユーザー | pekempey |
提出日時 | 2016-12-10 00:24:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,136 bytes |
コンパイル時間 | 1,748 ms |
コンパイル使用メモリ | 175,892 KB |
実行使用メモリ | 6,528 KB |
最終ジャッジ日時 | 2024-05-06 13:34:38 |
合計ジャッジ時間 | 15,387 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | RE | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 11 ms
6,528 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | RE | - |
testcase_26 | AC | 4 ms
5,376 KB |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | AC | 5 ms
5,376 KB |
testcase_30 | AC | 3 ms
5,376 KB |
testcase_31 | RE | - |
testcase_32 | WA | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | WA | - |
testcase_36 | RE | - |
testcase_37 | WA | - |
testcase_38 | RE | - |
testcase_39 | WA | - |
testcase_40 | RE | - |
testcase_41 | WA | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | WA | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | WA | - |
testcase_52 | RE | - |
testcase_53 | WA | - |
testcase_54 | RE | - |
testcase_55 | RE | - |
testcase_56 | RE | - |
testcase_57 | WA | - |
testcase_58 | RE | - |
testcase_59 | WA | - |
testcase_60 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int h, w, n; cin >> h >> w >> n; vector<int> cnt(w); for (int i = 0; i < h; i++) { char s[10001]; scanf("%s", s); for (int j = 0; j < w; j++) { if (s[j] == '#') { cnt[j]++; } } } vector<string> g(n * 3, string(3, '.')); vector<pair<int, int>> c(n); for (int i = 0; i < n; i++) { scanf("%d", &c[i].first); c[i].second = i; } sort(c.begin(), c.end()); int j = 0; for (int i = 0; i < n; i++) { while (j < c[i].first || cnt[j] == 0) { j++; } g[i * 3][j - c[i].first] = '#'; cnt[j]--; } for (int j = 0; j < w; j++) { for (int i = 0; i < n; i++) { for (int k = 0; k < 3; k++) { if (cnt[j] > 0 && g[i * 3 + k][j - c[i].first] == '.') { g[i * 3 + k][j - c[i].first] = '#'; cnt[j]--; } } } } for (int i = 0; i < n * 3; i++) { printf("%s\n", g[i].data()); } }