結果

問題 No.1021 Children in Classrooms
ユーザー phsplsphspls
提出日時 2020-04-11 12:49:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,164 bytes
コンパイル時間 1,747 ms
コンパイル使用メモリ 169,876 KB
実行使用メモリ 5,316 KB
最終ジャッジ日時 2023-10-19 02:12:09
合計ジャッジ時間 4,066 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 3 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 3 ms
4,348 KB
testcase_07 AC 3 ms
4,348 KB
testcase_08 WA -
testcase_09 AC 77 ms
5,300 KB
testcase_10 AC 77 ms
5,300 KB
testcase_11 AC 78 ms
5,300 KB
testcase_12 AC 76 ms
5,300 KB
testcase_13 AC 76 ms
5,300 KB
testcase_14 AC 76 ms
5,300 KB
testcase_15 AC 59 ms
4,844 KB
testcase_16 WA -
testcase_17 AC 61 ms
4,876 KB
testcase_18 WA -
testcase_19 AC 8 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define llong long long

int main() {
    int n, m;
    cin >> n >> m;
    vector<int> a(n);
    rep(i, n) cin >> a[i];
    string s;
    cin >> s;

    int leftpos = 0;
    int rightpos = n-1;
    int left = 0;
    int right = n -1;
    rep(i, m) {
        if(s[i] == 'L') {
            if(leftpos == 0) {
                left = min(left+1, n-1);
            } else {
                leftpos -= 1;
            }
            rightpos = max(0, rightpos-1);
        } else {
            if(rightpos == n-1) {
                right = max(0, right-1);
            } else {
                rightpos += 1;
            }
            leftpos = min(n-1, leftpos+1);
        }
    }

    vector<int> result(n, 0);
    rep(i, left+1) result[leftpos] += a[i];
    if(leftpos < rightpos) {
        for(int i=left+1; i<right; i++) {
            result[leftpos+i-left] += a[i];
        }
        for(int i=right; i<n; i++) {
            result[rightpos] += a[i];
        }
    }
    rep(i, n) {
        cout << result[i];
        if(i < n-1) cout << " ";
    }
    cout << "\n";
}
0