結果
問題 | No.517 壊れたアクセサリー |
ユーザー | aaaaaaiu |
提出日時 | 2019-08-28 11:39:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,199 bytes |
コンパイル時間 | 1,761 ms |
コンパイル使用メモリ | 203,324 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-17 16:09:30 |
合計ジャッジ時間 | 2,471 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 1 ms
6,816 KB |
testcase_10 | AC | 1 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | AC | 1 ms
6,816 KB |
testcase_17 | AC | 2 ms
6,820 KB |
testcase_18 | AC | 1 ms
6,820 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { int n; cin>>n; string s[n]; int len=0; for (int i=0;i<n;i++) { cin>>s[i]; len+=s[i].size(); } int m; cin>>m; string t[m]; for (int i=0;i<m;i++) cin>>t[i]; for (int i=0;i<n;i++) { string a=s[i]; string b=""; while (a.size()!=b.size()) { if (a.size()<b.size()) { bool f=0; for (int j=0;j<n;j++) if (s[j][0]==b[a.size()]) { a+=s[j]; f=1; break; } if (!f) break; } else if (a.size()>b.size()) { bool f=0; for (int j=0;j<m;j++) if (t[j][0]==a[b.size()]){ b+=t[j]; f=1; break; } if (!f) break; } } if (a.size()==len) { cout<<a<<endl; return 0; } } cout<<-1<<endl; return 0; }