結果

問題 No.1021 Children in Classrooms
ユーザー Moon0603Moon0603
提出日時 2020-04-11 18:19:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 1,420 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 203,708 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-19 05:54:06
合計ジャッジ時間 3,477 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 34 ms
5,376 KB
testcase_10 AC 33 ms
5,376 KB
testcase_11 AC 34 ms
5,376 KB
testcase_12 AC 34 ms
5,376 KB
testcase_13 AC 34 ms
5,376 KB
testcase_14 AC 34 ms
5,376 KB
testcase_15 AC 24 ms
5,376 KB
testcase_16 AC 24 ms
5,376 KB
testcase_17 AC 26 ms
5,376 KB
testcase_18 AC 32 ms
5,376 KB
testcase_19 AC 5 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int n, m;
    cin >> n >> m;

    vector<int> a(n);
    for (int i = 0; i < n; ++i) {
        cin >> a[i];
    }

    string s;
    cin >> s;

    int mn, mx = mn = 0;
    int cur = 0;

    for (int i = 0; i < m; ++i) {
        if (s[i] == 'L') {
            --cur;
        }
        else {
            ++cur;
        }
        mn = min(cur, mn);
        mx = max(cur, mx);
    }

    for (int i = 0; i < n - 1; ++i) {
        if (i + mn < 0) {
            a[i + 1] += a[i];
            a[i] = 0;
        }
    }

    for (int i = n - 1; i > 0; --i) {
        if (i + mx >= n) {
            a[i - 1] += a[i];
            a[i] = 0;
        }
    }

    vector<int> ans(n);

    for (int i = 1; i < n - 1; ++i) {
        if (a[i] > 0) {
            ans[i + cur] += a[i];
        }
    }

    int fi = 0, se = n - 1;

    for (int i = 0; i < m; ++i) {
        if (s[i] == 'L') {
            --fi;
            --se;
        }
        else {
            ++fi;
            ++se;
        }
        fi = max(fi, 0);
        se = max(se, 0);
        fi = min(fi, n - 1);
        se = min(se, n - 1);
    }

    ans[fi] += a[0];
    ans[se] += a[n - 1];

    for (int i = 0; i < n; ++i) {
        if (i > 0) {
            cout << " ";
        }
        cout << ans[i];
    }
    cout << '\n';

    return 0;
}
0