結果

問題 No.145 yukiover
ユーザー CleyLCleyL
提出日時 2020-02-07 20:09:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 719 bytes
コンパイル時間 2,199 ms
コンパイル使用メモリ 68,132 KB
実行使用メモリ 4,372 KB
最終ジャッジ日時 2023-10-25 23:16:25
合計ジャッジ時間 1,950 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 WA -
testcase_02 AC 2 ms
4,348 KB
testcase_03 WA -
testcase_04 AC 2 ms
4,348 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
4,348 KB
testcase_10 WA -
testcase_11 AC 4 ms
4,348 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 4 ms
4,348 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
using namespace std;
int n,dta[9];
int main(){
  char yuki[4] = {'y','u','k','i'};
  string s;cin>>n>>s;
  for(int i = 0; s.size() > i; i++){
    bool ok = false;
    for(int j = 0; 8 > j; j+=2){
      if(s[i] >= yuki[j/2]){
        ok = true;
        dta[j+s[i]==yuki[j/2]]++;
        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]);
    if(dta[i+1] > dta[i]){
      dta[i+1] -= dta[i];
      ans += min(dta[i+1],tans);
      if(dta[i+1] > tans)ans += (dta[i+1]-tans)/2;
    }
    tans = ans;
  }
  cout << tans + dta[8] << endl;
}
0