結果

問題 No.1021 Children in Classrooms
ユーザー hiro71687khiro71687k
提出日時 2024-12-31 02:26:28
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 1,128 bytes
コンパイル時間 2,339 ms
コンパイル使用メモリ 204,868 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-31 02:26:33
合計ジャッジ時間 4,996 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 72 ms
6,820 KB
testcase_10 AC 72 ms
6,816 KB
testcase_11 AC 72 ms
6,816 KB
testcase_12 AC 72 ms
6,820 KB
testcase_13 AC 71 ms
6,816 KB
testcase_14 AC 72 ms
6,816 KB
testcase_15 AC 54 ms
6,820 KB
testcase_16 AC 55 ms
6,820 KB
testcase_17 AC 57 ms
6,820 KB
testcase_18 AC 77 ms
6,820 KB
testcase_19 AC 8 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
int main(){
    ll n,m;
    cin >> n >> m;
    vector<ll>a(n);
    for (ll i = 0; i < n; i++)
    {
        cin >> a[i];
    }
    string s;
    cin >> s;
    ll l=0,left=0,right=n-1,r=n-1;
    for (ll i = 0; i < s.size(); i++)
    {
        if (s[i]=='L')
        {
            if (l==0)
            {
                left=min(left+1,n-1);
            }else{
                l--;
            }
            r=max(r-1,0LL);
        }else{
            if (r==n-1)
            {
                right=max(0LL,right-1);
            }else{
                r++;
            }
            l=min(n-1,l+1);
        }
    }
    vector<ll>b(n,0);
    ll now=0;
    for (ll i = 0; i < n; i++)
    {
        if (i<left)
        {
            now+=a[i];
        }else if (i==left)
        {
            now+=a[i];
            b[l]=now;
            now=0;
        }else if (i<right)
        {
            b[l+(i-left)]=a[i];
        }else{
            b[r]+=a[i];
        }
    }
    for (ll i = 0; i < b.size(); i++)
    {
        cout<< b[i] << ' ';
    }
    cout << endl;
}
0