結果

問題 No.1021 Children in Classrooms
ユーザー furafura
提出日時 2020-05-06 22:05:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 461 bytes
コンパイル時間 2,212 ms
コンパイル使用メモリ 206,272 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-03 09:10:37
合計ジャッジ時間 4,377 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 44 ms
6,940 KB
testcase_10 AC 47 ms
6,940 KB
testcase_11 AC 47 ms
6,940 KB
testcase_12 AC 45 ms
6,944 KB
testcase_13 AC 45 ms
6,940 KB
testcase_14 AC 44 ms
6,944 KB
testcase_15 AC 35 ms
6,944 KB
testcase_16 AC 35 ms
6,940 KB
testcase_17 AC 36 ms
6,944 KB
testcase_18 AC 45 ms
6,944 KB
testcase_19 AC 7 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

int main(){
	int n,m; scanf("%d%d",&n,&m);
	deque<int> D(n);
	rep(i,n) scanf("%d",&D[i]);

	string s; cin>>s;
	for(char c:s){
		if(c=='L'){
			int a=D.front();
			D.pop_front();
			D.front()+=a;
			D.emplace_back(0);
		}
		else{
			int a=D.back();
			D.pop_back();
			D.back()+=a;
			D.emplace_front(0);
		}
	}

	rep(i,n) printf("%d%c",D[i],i<n-1?' ':'\n');

	return 0;
}
0