Aizu Online Judge(AOJ)の過去問から、その提出コードの解答例です。
・問題 "The Outcome of Bonze"
https://onlinejudge.u-aizu.ac.jp/problems/0280
・坊主めくりの結末
僕が作成、提出したコードは、以下のとおりです。
・Aizu Online Judge in C++ #Volume2 - 0280 : The Outcome of Bonze
/* Aizu Online Judge in C++ #Volume2 - 0280 : The Outcome of Bonze https://onlinejudge.u-aizu.ac.jp/problems/0280 提出コードの解答例 https://neguse-atama.hatenablog.com */ #include<bits/stdc++.h> using namespace std; using ll=long long; int main(void){ while(1){ ll n; cin>>n; if(n==0){ break; } ll v[10]={0},ans=0; for(ll i=0;i<100;i++){ char c; cin>>c; v[i%n]++; if(c=='S'){ ans+=v[i%n]; v[i%n]=0; }else if(c=='L'){ v[i%n]+=ans; ans=0; } } sort(v,v+n); for(ll i=0;i<n;i++){ cout<<v[i]<<" "; } cout<<ans<<"\n"; } return 0; }
設問の出典は、プログラミング問題のオンライン採点システム「Aizu Online Judge(AOJ)」です。
http://judge.u-aizu.ac.jp/onlinejudge/