結果
問題 |
No.145 yukiover
|
ユーザー |
👑 |
提出日時 | 2020-02-07 19:54:03 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 6 ms / 5,000 ms |
コード長 | 957 bytes |
コンパイル時間 | 572 ms |
コンパイル使用メモリ | 69,312 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-25 07:25:44 |
合計ジャッジ時間 | 1,400 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 20 |
ソースコード
#include <iostream> #include <algorithm> using namespace std; int dta[9];// z y x~v u t~l k j i h~a int main(){ char yuki[4] = {'y','u','k','i'}; int n;cin>>n; string s;cin>>s; for(int i = 0; s.size() > i; i++){ int ok = false; for(int j = 0; 8 > j; j+=2){ if(s[i] > yuki[j/2]){ ok = true; dta[j]++; break; }else if(s[i] == yuki[j/2]){ ok = true; dta[j+1]++; break; } } if(!ok){ dta[8]++; } } reverse(dta,dta+9); int tans = (dta[1]>dta[0]?dta[0]+(dta[1]-dta[0])/2:dta[1]); for(int i = 2; 7 > i; i+=2){ int ans = min(dta[i],dta[i+1]); //cout << i << " " << i+1 << ":" << dta[i] << " " << dta[i+1] << endl; if(dta[i+1] > dta[i]){ dta[i+1] -= dta[i]; ans += min(dta[i+1],tans); if(dta[i+1] > tans){ dta[i+1]-= tans; ans += dta[i+1]/=2; } } tans = ans; } cout << tans + dta[8] << endl; }