結果
問題 | No.1021 Children in Classrooms |
ユーザー | chocono2230 |
提出日時 | 2020-04-10 22:31:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 94 ms / 2,000 ms |
コード長 | 882 bytes |
コンパイル時間 | 1,637 ms |
コンパイル使用メモリ | 169,128 KB |
実行使用メモリ | 9,984 KB |
最終ジャッジ日時 | 2024-09-15 21:00:27 |
合計ジャッジ時間 | 3,845 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 | 3 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 90 ms
9,908 KB |
testcase_10 | AC | 90 ms
9,984 KB |
testcase_11 | AC | 89 ms
9,904 KB |
testcase_12 | AC | 90 ms
9,908 KB |
testcase_13 | AC | 90 ms
9,908 KB |
testcase_14 | AC | 91 ms
9,776 KB |
testcase_15 | AC | 70 ms
8,368 KB |
testcase_16 | AC | 70 ms
8,320 KB |
testcase_17 | AC | 73 ms
8,576 KB |
testcase_18 | AC | 94 ms
9,984 KB |
testcase_19 | AC | 12 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i = 0; i < (int)(n); i++) #define rrep(ri,n) for(int ri = (int)(n-1); ri >= 0; ri--) #define rep2(i,x,n) for(int i = (int)(x); i < (int)(n); i++) #define repit(itr,x) for(auto itr = x.begin(); itr != x.end(); itr++) #define rrepit(ritr,x) for(auto ritr = x.rbegin(); ritr != x.rend(); ritr++) #define ALL(n) begin(n), end(n) using ll = long long; using namespace std; int main(){ int n, m; cin >> n >> m; list<ll> lis; rep(i, n){ ll in; cin >> in; lis.push_back(in); } string s; cin >> s; rep(i, m){ if(s[i] == 'L'){ ll l1 = lis.front(); lis.pop_front(); lis.front() += l1; lis.push_back(0); }else{ ll l1 = lis.back(); lis.pop_back(); lis.back() += l1; lis.push_front(0); } } rep(i, n){ if(i != 0) cout << " "; cout << lis.front(); lis.pop_front(); } cout << endl; return 0; }