結果
問題 | No.52 よくある文字列の問題 |
ユーザー | ren0824xemnas |
提出日時 | 2015-09-22 23:18:16 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 674 bytes |
コンパイル時間 | 760 ms |
コンパイル使用メモリ | 72,028 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-19 08:42:52 |
合計ジャッジ時間 | 1,246 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
#include<iostream> #include<string> #include<vector> #include<map> using namespace std; typedef long long int ll; typedef pair<ll,ll> P; #define INF 1000000000 map<string,int> data; void dfs(string now,string str,int cou); int lim; int main(){ string str; cin >> str; lim = str.size(); string t = ""; dfs(t,str,0); cout << data.size() << endl; } void dfs(string now,string str,int cou){ if(cou == lim) { cout << now << endl; data[now] = 1; return; } int len = str.size(); string tmp = str; string next = now; tmp.erase(0,1); next += str[0]; dfs(next,tmp,cou+1); tmp = str; next = now; tmp.erase(len-1,1); next += str[len-1]; dfs(next,tmp,cou+1); }