結果

問題 No.1021 Children in Classrooms
ユーザー QCFiumQCFium
提出日時 2020-04-10 21:31:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 731 bytes
コンパイル時間 1,749 ms
コンパイル使用メモリ 174,092 KB
実行使用メモリ 5,504 KB
最終ジャッジ日時 2024-09-15 19:17:20
合計ジャッジ時間 3,505 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

int ri() {
	int n;
	scanf("%d", &n);
	return n;
}

int main() {
	int n = ri();
	int m = ri();
	int a[n];
	for (auto &i : a) i = ri();
	std::string s;
	std::cin >> s;
	int left_clear = 0;
	int right_clear = 0;
	std::deque<int> all(a, a + n);
	for (int i = 0; i < m; i++) {
		if (s[i] == 'R') {
			if (right_clear) right_clear--;
			else if (all.size() > 1) all[all.size() - 2] += all.back(), all.pop_back();
			left_clear++;
		} else {
			if (left_clear) left_clear--;
			else if (all.size() > 1) all[1] += all[0], all.pop_front();
			right_clear++;
		}
	}
	for (int i = 0; i < left_clear; i++) all.push_front(0);
	all.resize(n);
	for (int i = 0; i < n; i++) printf("%d ", all[i]);
	puts("");
	return 0;
}
0