結果

問題 No.1021 Children in Classrooms
ユーザー chocoruskchocorusk
提出日時 2020-03-04 18:33:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 576 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 55,660 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-05-08 01:59:32
合計ジャッジ時間 5,021 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
10,624 KB
testcase_01 AC 4 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 169 ms
5,376 KB
testcase_04 AC 154 ms
5,376 KB
testcase_05 AC 172 ms
5,376 KB
testcase_06 AC 141 ms
5,376 KB
testcase_07 AC 194 ms
5,376 KB
testcase_08 AC 192 ms
5,376 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <string>
#include <algorithm>
using namespace std;
int n, m;
char s[200020];
int a[200020], tmp[200020];
int main()
{
	scanf("%d %d", &n, &m);
	for(int i=0; i<n; i++) scanf("%d", &a[i]);
	scanf("%s", s);
	for(int i=0; i<m; i++){
		fill(tmp, tmp+n, 0);
		if(s[i]=='L'){
			tmp[0]=a[0];
			for(int j=1; j<n; j++){
				tmp[j-1]+=a[j];
			}
		}else{
			tmp[n-1]=a[n-1];
			for(int j=0; j<n-1; j++){
				tmp[j+1]+=a[j];
			}
		}
		swap(a, tmp);
	}
	for(int i=0; i<n; i++){
		printf("%d", a[i]);
		if(i<n-1) printf(" ");
	}
	printf("\n");
    return 0;
}
0