結果
問題 | No.1192 半部分列 |
ユーザー | tnakao0123 |
提出日時 | 2020-08-24 16:33:31 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,667 bytes |
コンパイル時間 | 804 ms |
コンパイル使用メモリ | 94,816 KB |
実行使用メモリ | 24,608 KB |
最終ジャッジ日時 | 2024-11-06 10:22:20 |
合計ジャッジ時間 | 1,829 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,816 KB |
testcase_01 | AC | 3 ms
6,816 KB |
testcase_02 | AC | 3 ms
6,820 KB |
testcase_03 | AC | 3 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 13 ms
24,608 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 3 ms
6,816 KB |
testcase_11 | AC | 3 ms
6,820 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 8 ms
19,404 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 5 ms
13,868 KB |
testcase_22 | AC | 2 ms
6,820 KB |
testcase_23 | WA | - |
testcase_24 | AC | 4 ms
9,844 KB |
testcase_25 | AC | 6 ms
14,880 KB |
testcase_26 | AC | 5 ms
15,012 KB |
testcase_27 | AC | 6 ms
16,172 KB |
ソースコード
/* -*- coding: utf-8 -*- * * 1192.cc: No.1192 半部分列 - yukicoder */ #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<iostream> #include<string> #include<vector> #include<map> #include<set> #include<stack> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<functional> using namespace std; /* constant */ const int MAX_N = 100000; const int INF = 1 << 30; /* typedef */ /* global variables */ char s[MAX_N + 4], t[MAX_N + 4], w[MAX_N + 4]; int scs[MAX_N + 1][26], tcs[MAX_N + 1][26]; int sbss[MAX_N + 1]; /* subroutines */ void calccs(int n, char s[], int cs[][26]) { fill(cs[n], cs[n] + 26, INF); for (int i = n - 1; i >= 0; i--) { copy(cs[i + 1], cs[i + 1] + 26, cs[i]); cs[i][s[i] - 'a'] = i; } } /* main */ int main() { scanf("%s%s", s, t); int n = strlen(s), m = strlen(t); calccs(n, s, scs); calccs(m, t, tcs); sbss[n] = m; for (int i = n - 1, j = m - 1; i >= 0; i--) { while (j >= 0 && t[j] != s[i]) j--; sbss[i] = j; if (j >= 0) j--; } //for (int i = 0; i <= n; i++) printf("%d ", sbss[i]); putchar('\n'); if (sbss[0] >= 0) puts("-1"); else { int i = 0, j = 0, k = 0; for (; j < m;) { for (int c = 0; c < 26; c++) { int i1 = scs[i][c] + 1, j1 = tcs[j][c] + 1; if (i1 <= n && sbss[i1] < j1) { //printf("w[%d]=%c, i=%d->%d, j=%d->%d\n", k, 'a' + c, i, i1, j, j1); w[k++] = 'a' + c; i = i1, j = j1; break; } } } for (int c = 0; c < 26; c++) if (scs[i][c] < n) { w[k++] = 'a' + c; break; } puts(w); } return 0; }