結果
問題 | No.430 文字列検索 |
ユーザー | Dugong |
提出日時 | 2016-10-04 19:23:45 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 74 ms / 2,000 ms |
コード長 | 593 bytes |
コンパイル時間 | 547 ms |
コンパイル使用メモリ | 62,612 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-10 00:09:03 |
合計ジャッジ時間 | 1,686 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 64 ms
5,248 KB |
testcase_02 | AC | 39 ms
5,248 KB |
testcase_03 | AC | 53 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 24 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 4 ms
5,248 KB |
testcase_11 | AC | 73 ms
5,248 KB |
testcase_12 | AC | 74 ms
5,248 KB |
testcase_13 | AC | 71 ms
5,248 KB |
testcase_14 | AC | 56 ms
5,248 KB |
testcase_15 | AC | 48 ms
5,248 KB |
testcase_16 | AC | 43 ms
5,248 KB |
testcase_17 | AC | 37 ms
5,248 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:15:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 15 | scanf("%s %d",s,&m); | ~~~~~^~~~~~~~~~~~~~ main.cpp:17:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 17 | scanf("%s",c[i]); | ~~~~~^~~~~~~~~~~
ソースコード
#include<cstdio> #include<cstring> #include<map> #include<set> #include<string> #include<algorithm> using namespace std; char s[50001]; char c[5000][11]; int m,ans; set<string> st; int main(){ scanf("%s %d",s,&m); for(int i=0;i<m;i++){ scanf("%s",c[i]); string str(c[i]); st.insert(str); } int l = strlen(s); for(int i=0;i<l;i++){ for(int j=1;j<=10&&i+j<=l;j++){ char c = s[i+j]; s[i+j] = '\0'; string str(s+i); // attention! if(st.find(str)!=st.end()){ ans++; } s[i+j] = c; } } printf("%d\n",ans); return 0; }