結果
問題 | No.2997 Making YuzuKizu |
ユーザー | GOTKAKO |
提出日時 | 2024-12-22 16:15:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 6 ms / 2,000 ms |
コード長 | 1,436 bytes |
コンパイル時間 | 2,634 ms |
コンパイル使用メモリ | 203,532 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-22 16:15:55 |
合計ジャッジ時間 | 2,986 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 6 ms
5,248 KB |
testcase_02 | AC | 6 ms
5,248 KB |
testcase_03 | AC | 5 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 3 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(nullptr); string s; cin >> s; vector<int> ap(26); for(auto &c : s) ap.at(c-'a')++; string Yuzuki = "yukari",Kizuna = "akari",Kawaii = "yuzukizu"; int low = 0,high = s.size(); while(high-low > 1){ int mid = (low+high)/2; bool ok = true; for(auto &c : Yuzuki){ ap.at(c-'a') -= mid; if(ap.at(c-'a') < 0) ok = false; } for(auto &c : Yuzuki) ap.at(c-'a') += mid; if(ok) low = mid; else high = mid; } cout << low << " "; low = 0,high = s.size(); while(high-low > 1){ int mid = (low+high)/2; bool ok = true; for(auto &c : Kizuna){ ap.at(c-'a') -= mid; if(ap.at(c-'a') < 0) ok = false; } for(auto &c : Kizuna) ap.at(c-'a') += mid; if(ok) low = mid; else high = mid; } cout << low << " "; low = 0,high = s.size(); while(high-low > 1){ int mid = (low+high)/2; bool ok = true; for(auto &c : Kawaii){ ap.at(c-'a') -= mid; if(ap.at(c-'a') < 0) ok = false; } for(auto &c : Kawaii) ap.at(c-'a') += mid; if(ok) low = mid; else high = mid; } cout << low << endl; //結月ゆかり紲星あかり誕生日おめでとう~. }