結果
問題 | No.1021 Children in Classrooms |
ユーザー | milanis48663220 |
提出日時 | 2020-04-10 21:58:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,347 bytes |
コンパイル時間 | 789 ms |
コンパイル使用メモリ | 83,528 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-15 20:18:23 |
合計ジャッジ時間 | 2,389 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 33 ms
5,376 KB |
testcase_10 | AC | 34 ms
5,376 KB |
testcase_11 | AC | 33 ms
5,376 KB |
testcase_12 | AC | 32 ms
5,376 KB |
testcase_13 | AC | 32 ms
5,376 KB |
testcase_14 | AC | 31 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 31 ms
5,376 KB |
testcase_19 | AC | 6 ms
5,376 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <set> #include <map> using namespace std; typedef long long ll; int N, M; int a[200000]; int fin[200000]; int ans[200000]; string S; int sim(int s){ for(int i = 0; i < M; i++){ if(S[i] == 'L') s = max(s-1, 1); else s = min(s+1, N); } return s; } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; cin >> N >> M; for(int i = 0; i < N; i++) cin >> a[i]; cin >> S; int l = 0, r = 0; int sum = 0; for(int i = 0; i < M; i++){ if(S[i] == 'L') sum--; else sum++; l = min(l, sum); r = max(r, sum); } // cout << sum << ' ' << l << ' ' << r << endl; fin[0] = sim(1); fin[N-1] = sim(N); // cout << fin[0] << ' ' << fin[N-1] << endl; if(fin[0] == fin[N-1]){ if(fin[0] == 1){ for(int i = 0; i < N; i++) ans[0] += a[i]; }else{ for(int i = 0; i < N; i++) ans[N-1] += a[i]; } }else{ for(int i = 0; i < N; i++){ if(i+1+l <= 1) ans[fin[0]-1] += a[i]; else if(i+r+1 >= N) ans[fin[N-1]-1] += a[i]; else ans[i+sum] += a[i]; } } for(int i = 0; i < N; i++) cout << ans[i] << ' '; cout << endl; }