結果
問題 | No.1192 半部分列 |
ユーザー | jupiro |
提出日時 | 2020-10-21 10:49:46 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,213 bytes |
コンパイル時間 | 1,577 ms |
コンパイル使用メモリ | 137,880 KB |
実行使用メモリ | 30,720 KB |
最終ジャッジ日時 | 2024-07-21 08:49:29 |
合計ジャッジ時間 | 2,983 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 33 ms
30,592 KB |
testcase_09 | AC | 31 ms
29,568 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 33 ms
30,592 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 20 ms
19,584 KB |
testcase_16 | AC | 15 ms
15,232 KB |
testcase_17 | AC | 20 ms
19,968 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 7 ms
8,192 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 20 ms
16,896 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | WA | - |
testcase_24 | AC | 8 ms
7,936 KB |
testcase_25 | AC | 16 ms
14,592 KB |
testcase_26 | AC | 17 ms
14,720 KB |
testcase_27 | AC | 19 ms
16,512 KB |
ソースコード
#include <iostream> #include <string> #include <sstream> #include <stack> #include <algorithm> #include <cmath> #include <queue> #include <bitset> #include <iomanip> #include <limits> #include <chrono> #include <random> #include <array> #include <unordered_map> #include <functional> #include <complex> #include <numeric> #include <cctype> #include <map> #include <set> #include <cstdlib> #include <bitset> #include <tuple> #include <assert.h> #include <deque> #include <utility> #include <fstream> using namespace std; typedef long long ll; using ull = unsigned long long; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template<typename T> T gcd(T a, T b) { a = abs(a), b = abs(b); while (b > 0) { tie(a, b) = make_pair(b, a % b); } return a; } mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count()); constexpr long long INF = 1LL << 60; constexpr int inf = 1000000007; constexpr long long mod = 1000000007LL; //constexpr long long mod = 998244353; constexpr int MAX = 1100000; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); string s, t; cin >> s >> t; auto nextcharchter = [](string s)->vector<vector<int>> { int n = s.size(); vector<vector<int>> ret(n + 1, vector<int>(26, n)); for (int i = n - 1; i >= 0; i--) { if (i + 1 < n) { for (int j = 0; j < 26; j++) { ret[i][j] = ret[i + 1][j]; } } ret[i][s[i] - 'a'] = i; } return ret; }; auto ns = nextcharchter(s); auto nt = nextcharchter(t); vector<int> lst(s.size()); { int cur = (int)t.size() - 1; for (int i = (int)s.size() - 1; i >= 0; i--) { while (cur >= 0 and t[cur] != s[i]) cur--; lst[i] = cur; } } if (lst[0] != -1) { cout << -1 << endl; return 0; } string res; int sc = 0; int tc = 0; while (true) { for (int i = 0; i < 26; i++) { if (ns[sc][i] == s.size()) continue; if (nt[tc][i] == t.size()) { res += (char)(i + 'a'); cout << res << "\n"; exit(0); } if (lst[ns[sc][i]] >= nt[tc][i]) continue; res += (char)(i + 'a'); sc = ns[sc][i] + 1; tc = nt[tc][i] + 1; break; } } }