結果
問題 | No.1021 Children in Classrooms |
ユーザー |
![]() |
提出日時 | 2022-08-08 00:43:08 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 46 ms / 2,000 ms |
コード長 | 605 bytes |
コンパイル時間 | 2,078 ms |
コンパイル使用メモリ | 196,176 KB |
最終ジャッジ日時 | 2025-01-30 19:20:47 |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 |
ソースコード
#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;}