結果

問題 No.459 C-VS for yukicoder
ユーザー pekempeypekempey
提出日時 2016-12-10 00:16:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,049 bytes
コンパイル時間 2,000 ms
コンパイル使用メモリ 176,620 KB
実行使用メモリ 817,024 KB
最終ジャッジ日時 2024-05-06 13:33:34
合計ジャッジ時間 6,379 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
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 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 MLE -
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 <bits/stdc++.h>
using namespace std;

int main() {
    int h, w, n;
    cin >> h >> w >> n;

    vector<string> s(h);
    for (int i = 0; i < h; i++) {
        cin >> s[i];
    }

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

    vector<string> g(n * 3, string(w, '.'));

    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] = '#';
        cnt[j]--;
    }
    for (int j = 0; j < w; j++) {
        for (int i = 0; i < n * 3; i++) {
            if (g[i][j] == '.' && cnt[j] > 0) {
                g[i][j] = '#';
                cnt[j]--;
            }
        }
    }

    for (int i = 0; i < n * 3; i++) {
        cout << g[i] << endl;
    }
}
0