結果
問題 | No.1021 Children in Classrooms |
ユーザー | kyoprouno |
提出日時 | 2020-04-10 22:32:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,880 bytes |
コンパイル時間 | 2,051 ms |
コンパイル使用メモリ | 179,160 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-15 21:01:09 |
合計ジャッジ時間 | 3,795 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 56 ms
5,376 KB |
testcase_16 | AC | 57 ms
5,376 KB |
testcase_17 | AC | 59 ms
5,376 KB |
testcase_18 | AC | 80 ms
5,376 KB |
testcase_19 | AC | 8 ms
5,376 KB |
ソースコード
#pragma GCC optimize("O3") #include <bits/stdc++.h> #define ll long long #define rep(i,n) for(ll i=0;i<(n);i++) #define pll pair<ll,ll> #define pq priority_queue #define pb push_back #define eb emplace_back #define fi first #define se second #define ios ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0); #define lb(c,x) distance(c.begin(),lower_bound(all(c),x)) #define ub(c,x) distance(c.begin(),upper_bound(all(c),x)) using namespace std; template<class T> inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;} template<class T> inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;} const ll INF=1e9+7; int main() { ll n,m; cin >> n >> m; vector<ll> a(n); ll sum=0; rep(i,n){ cin >> a[i]; sum+=a[i]; } ll cnt=0; ll Min=0; ll Max=0; string s; cin >> s; rep(i,m){ if(s[i]=='R') cnt++; else cnt--; Min=min(Min,cnt); Max=max(Max,cnt); } ll le=Max; ll ri=n-1-abs(Min); if(Max>=n-1 || abs(Min)>=n-1){ ll p=0; //一番左としてよい。 rep(i,m){ if(s[i]=='L') p--; else p++; if(p>=n) p=n-1; if(p<=-1) p=0; } rep(i,n){ if(i) cout << " "; if(i==p) cout << sum; else cout << 0; } cout << endl; } else{ ll sum_L=0; for(ll i=0;i<=abs(Min);i++){ sum_L+=a[i]; } ll sum_R=0; for(ll i=n-1-Max;i<=n-1;i++){ sum_R+=a[i]; } rep(i,n){ if(i) cout << " "; if(0<=i && i<=abs(Min)+cnt-1) cout << 0; else if(n-Max+cnt<=i && i<=n-1) cout << 0; else if(i==abs(Min)+cnt) cout << sum_L; else if(i==n-1-Max+cnt) cout << sum_R; else cout << a[i]; } } return 0; }