結果

問題 No.1021 Children in Classrooms
ユーザー sawfishsawfish
提出日時 2022-10-24 08:23:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 766 ms
コンパイル使用メモリ 75,808 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-02 13:59:20
合計ジャッジ時間 3,248 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 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 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 80 ms
5,376 KB
testcase_10 AC 75 ms
5,376 KB
testcase_11 AC 79 ms
5,376 KB
testcase_12 AC 74 ms
5,376 KB
testcase_13 AC 74 ms
5,376 KB
testcase_14 AC 74 ms
5,376 KB
testcase_15 AC 60 ms
5,376 KB
testcase_16 AC 57 ms
5,376 KB
testcase_17 AC 59 ms
5,376 KB
testcase_18 AC 78 ms
5,376 KB
testcase_19 AC 8 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>

using namespace std;
using LL = long long;
using ULL = unsigned long long;

int main() {
    int N, M;
    cin >> N >> M;

    deque<int> dq;
    int a;
    for (int i = 0; i < N; i++) {
        cin >> a;
        dq.push_back(a);
    }

    string S;
    cin >> S;
    for (int i = 0; i < M; i++) {
        if (S[i] == 'L') {
            int p = dq.front();
            dq.pop_front();
            dq.front() += p;
            dq.push_back(0);
        } else {
            int p = dq.back();
            dq.pop_back();
            dq.back() += p;
            dq.push_front(0);
        }
    }

    for (int i = 0; i < dq.size(); i++) {
        if (i > 0) cout << " ";
        cout << dq[i];
    }
    cout << endl;
}
0