結果
問題 | No.1612 I hate Construct a Palindrome |
ユーザー | SSRS |
提出日時 | 2021-07-21 21:50:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,983 bytes |
コンパイル時間 | 2,179 ms |
コンパイル使用メモリ | 189,552 KB |
実行使用メモリ | 61,384 KB |
最終ジャッジ日時 | 2024-07-17 17:46:17 |
合計ジャッジ時間 | 18,799 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int N, M; cin >> N >> M; vector<vector<tuple<char, int, int>>> E(N); for (int i = 0; i < M; i++){ int A, B; char C; cin >> A >> B >> C; A--; B--; E[A].push_back(make_tuple(C, i, B)); E[B].push_back(make_tuple(C, i, A)); } vector<vector<int>> d(27, vector<int>(N, -1)); vector<vector<int>> pv(27, vector<int>(N, -1)); vector<vector<int>> pe(27, vector<int>(N, -1)); vector<vector<int>> ps(27, vector<int>(N, -1)); vector<vector<char>> pc(27, vector<char>(N, -1)); queue<pair<int, int>> Q; for (int i = 0; i < 26; i++){ d[i][0] = 0; Q.push(make_pair(i, 0)); } while (!Q.empty()){ int s = Q.front().first; int v = Q.front().second; Q.pop(); for (auto e : E[v]){ char c = get<0>(e); if (!(v == 0 && s != c - 'a')){ int w = get<2>(e); int s2 = s; if (s != c - 'a'){ s2 = 26; } if (d[s2][w] == -1){ d[s2][w] = d[s][v] + 1; pv[s2][w] = v; pe[s2][w] = get<1>(e); ps[s2][w] = s; pc[s2][w] = c; Q.push(make_pair(s2, w)); } } } } if (d[26][N - 1] == -1){ cout << -1 << endl; } else { string S; vector<int> ans; int c = N - 1; int s = 26; while (c != 0 || s == 26){ S += pc[s][c]; ans.push_back(pe[s][c]); int c2 = pv[s][c]; int s2 = ps[s][c]; c = c2; s = s2; } reverse(S.begin(), S.end()); reverse(ans.begin(), ans.end()); while (S.size() + 2 <= N * 2){ char ch = pc[26][N - 1]; S += ch * 2; ans.push_back(pe[26][N - 1]); ans.push_back(pe[26][N - 1]); } string S2 = S; reverse(S2.begin(), S2.end()); if (S == S2){ cout << -1 << endl; } else { int k = ans.size(); cout << k << endl; for (int i = 0; i < k; i++){ cout << ans[i] + 1 << endl; } } } }