結果
問題 | No.1021 Children in Classrooms |
ユーザー | nebukuro09 |
提出日時 | 2020-04-10 21:40:42 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,433 bytes |
コンパイル時間 | 711 ms |
コンパイル使用メモリ | 118,636 KB |
実行使用メモリ | 14,180 KB |
最終ジャッジ日時 | 2024-06-22 06:31:58 |
合計ジャッジ時間 | 2,519 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 67 ms
11,236 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 49 ms
8,808 KB |
testcase_16 | WA | - |
testcase_17 | AC | 51 ms
9,752 KB |
testcase_18 | WA | - |
testcase_19 | AC | 3 ms
6,940 KB |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop, core.stdc.stdlib; void main() { auto s = readln.split.map!(to!int); auto N = s[0]; auto M = s[1]; auto A = readln.split.map!(to!int).array; auto S = readln.chomp; int left = 0; int right = N - 1; int left_end = 0; int right_end = N - 1; int diff = 0; foreach (c; S) { if (c == 'L') { if (left_end == 0) { left = min(N - 1, left + 1); right_end = max(0, right_end - 1); } else { left_end = max(0, left_end - 1); right_end = max(0, right_end - 1); } diff -= 1; } else { if (right_end == 0) { right = max(0, right - 1); left_end = min(N - 1, left_end + 1); } else { left_end = min(N - 1, left_end + 1); right_end = min(N - 1, right_end + 1); } diff += 1; } } auto ans = new int[](N); foreach (i; 0..N) { if (i <= left) { ans[left_end] += A[i]; } else if (i >= right) { ans[right_end] += A[i]; } else { ans[i + diff] += A[i]; } } ans.map!(to!string).join(" ").writeln; }