結果
問題 | No.145 yukiover |
ユーザー | ciel |
提出日時 | 2015-04-19 01:35:58 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 404 bytes |
コンパイル時間 | 374 ms |
コンパイル使用メモリ | 53,404 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-04 16:44:05 |
合計ジャッジ時間 | 1,364 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
5,376 KB |
ソースコード
#include <string> #include <vector> #include <algorithm> #include <cstdio> using namespace std; vector<int>v(256); const string target="yuki"; int dfs(int d){ if(d==target.size())return 0; char c=target[d]; if(v[c]){v[c]--;if(dfs(d+1))return 1;} for(c++;c<='z';c++)if(v[c]){v[c]--;return 1;} return 0; } int main(){ int R=0,c; for(;~(c=getchar());)v[c]++; for(;dfs(0);)R++; printf("%d\n",R); }