結果

問題 No.1021 Children in Classrooms
ユーザー umezoumezo
提出日時 2022-08-08 00:43:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 605 bytes
コンパイル時間 2,398 ms
コンパイル使用メモリ 202,680 KB
実行使用メモリ 8,424 KB
最終ジャッジ日時 2024-09-17 16:16:35
合計ジャッジ時間 4,027 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
7,880 KB
testcase_01 AC 3 ms
7,896 KB
testcase_02 AC 5 ms
7,888 KB
testcase_03 AC 5 ms
7,764 KB
testcase_04 AC 5 ms
8,072 KB
testcase_05 AC 3 ms
7,828 KB
testcase_06 AC 4 ms
7,796 KB
testcase_07 AC 5 ms
7,864 KB
testcase_08 AC 4 ms
7,944 KB
testcase_09 AC 34 ms
8,220 KB
testcase_10 AC 34 ms
8,220 KB
testcase_11 AC 34 ms
8,120 KB
testcase_12 AC 32 ms
8,284 KB
testcase_13 AC 34 ms
8,176 KB
testcase_14 AC 33 ms
8,084 KB
testcase_15 AC 25 ms
8,324 KB
testcase_16 AC 25 ms
8,324 KB
testcase_17 AC 26 ms
8,244 KB
testcase_18 AC 33 ms
8,424 KB
testcase_19 AC 5 ms
8,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;

#include<bits/stdc++.h>
using namespace std;

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

  int n,m;
  cin>>n>>m;
  vector<ll> A(600000);
  int t=200000;
  rep(i,n) cin>>A[i+t];
  string s;
  cin>>s;
  
  int l=t,r=t+n-1;
  rep(i,m){
    if(s[i]=='L'){
      A[l+1]+=A[l];
      A[l]=0;
      l++,r++;
    }
    else{
      A[r-1]+=A[r];
      A[r]=0;
      l--,r--;
    }
  }
  for(int i=l;i<=r;i++){
    if(i>l) cout<<" ";
    cout<<A[i];
  }
  cout<<endl;
      
  return 0;
}
0