結果

問題 No.1021 Children in Classrooms
ユーザー 沙耶花沙耶花
提出日時 2020-04-10 21:29:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 817 bytes
コンパイル時間 2,225 ms
コンパイル使用メモリ 205,684 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-15 19:13:34
合計ジャッジ時間 4,512 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define modulo 1000000007
#define mod(mod_x) ((((long long)mod_x)+modulo)%modulo)
#define Inf 100000000


int main() {
	
	int N,M;
	cin>>N>>M;
	
	deque<int> a(N);
	for(int i=0;i<N;i++)cin>>a[i];
	
	string S;
	cin>>S;
	
	int L = 1,R = N;
	
	for(int i=0;i<M;i++){
		if(S[i]=='L'){
			if(L!=1){
				L--;
				R--;
			}
			else{
				R--;
				if(a.size()==1)continue;
				int X = a.front();
				a.pop_front();
				a.front()+=X;
			}
		}
		else{
			if(R!=N){
				L++;
				R++;
			}
			else{
				L++;
				if(a.size()==1)continue;
				int X = a.back();
				a.pop_back();
				a.back()+=X;
			}
		}
	}
	
	vector<int> ans(N,0);
	
	for(int i=0;i<a.size();i++){
		ans[L-1+i]=a[i];
	}
	
	for(int i=0;i<N;i++){
		if(i!=0)cout<<' ';
		cout<<ans[i];
	}
	cout<<endl;
				
	
    return 0;
}
0