結果

問題 No.459 C-VS for yukicoder
ユーザー maimai
提出日時 2016-11-20 13:50:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,553 bytes
コンパイル時間 1,576 ms
コンパイル使用メモリ 173,720 KB
実行使用メモリ 5,632 KB
最終ジャッジ日時 2024-05-06 13:11:27
合計ジャッジ時間 7,624 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

/* -------------------------------------------
 WA
--------------------------------------------*/

#include <bits/stdc++.h>

using namespace std;

int main(){
    int x,y;
    
    int width, height;
    int n;
    
    cin >> height >> width >> n;
    cin.ignore();

    // assert
    assert(0 <= height && height <= 10000);
    assert(0 <= width  && width  <= 10000);
    assert(height * width <= 30000);
    assert(0 <= n && n <= 30000);
    assert(n <= height * width);
    
    // X座標にブロックがいくつ積まれているか、を記録する。
    // stringを保持する必要はない。
    vector<int> field(width,0);
    
    for (y = 0; y < height; y++){
        string s;
        cin >> s;
        bool check_block = false;
        for (x = 0; x < width; x++){
            field[x] += s[x]=='#';
            check_block |= s[x]=='#';
        }
        assert(check_block); 
    }
    
    // 標準入力から与えられるコマンド。
    vector<int> commands;                         // commands[i] : i番目のコマンド 
    vector<vector<int>> commands_bucket(width-2); // bucket[x]={e0,e1,..} : x座標にe_i番目のコマンドが与えられた
    
    for (int i=0; i < n; i++){
        int c;
        cin >> c;
        assert(0 <= c && c <= width - 3);         // assert: 範囲外のコマンド

        commands_bucket[c].push_back(commands.size());
        commands.push_back(c);
    }
    
    // 最終的に出力するpack
    vector<vector<int>> result_pack(n,vector<int>(3,0));
    
    // 制約「全てのパックは1つ以上のブロックを必ず持つ」を満たすために、
    // パックごと1つだけブロックを割り当てる。
    // 左端列のブロックは、左端のパックのみがそこに設置できるはず。
    // よって貪欲に左端のブロックから配置していくことができる。
    // int cursor = 0;
    // for (x = 0; x < width-2; x++){
    //     cursor = max(cursor,x);
    //     for (int cmdidx : commands_bucket[x]){
    //         while (field[cursor] == 0) cursor++;
    //         assert(cursor <= x+2);          // assert: カーソルがコマンドより右にある。すなわち、ブロックが足りない。
    //         result_pack[cmdidx][cursor-x]++;
    //         field[cursor]--;
    //     }
    // }
    
    // 一般にブロックはまだ残っているはずなので、
    // 残りのブロックを割り当てる。
    // 上と同様に、左端のブロックからパックに配置していく。
    for (x = 0; x < width-2; x++){
        for (int cmdidx : commands_bucket[x]){
            for (int i=0; i < 3; i++){
                int fil = min(3-result_pack[cmdidx][i],field[x+i]); // x+i座標から取り出すブロックの数
                assert(0<=fil && fil<=3);                           // assert: ブロックの取り出し方に不正  

                result_pack[cmdidx][i] += fil;
                field[x+i] -= fil;
                assert(0<=field[x+i] && result_pack[cmdidx][i]<=3); // ブロックが足りない、あるいはパックのブロック保有数に異常
            }
        }
    }
    
    // 出力するだけ
    for (int i=0; i < n; i++){
        for (y = 3; 0 < y; y--){
            for (x = 0; x < 3; x++){
                if (y<=result_pack[i][x]){
                    putchar('#');
                }else{
                    putchar('.');
                }
            }
            putchar('\n');
        }
    }
    
    return 0;
}
0