結果

問題 No.1612 I hate Construct a Palindrome
ユーザー SSRSSSRS
提出日時 2021-07-21 22:05:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,310 bytes
コンパイル時間 2,011 ms
コンパイル使用メモリ 188,892 KB
実行使用メモリ 58,796 KB
最終ジャッジ日時 2023-09-24 17:43:36
合計ジャッジ時間 8,347 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 5 ms
4,376 KB
testcase_05 AC 411 ms
55,248 KB
testcase_06 AC 194 ms
54,844 KB
testcase_07 AC 201 ms
54,812 KB
testcase_08 AC 183 ms
54,584 KB
testcase_09 AC 141 ms
54,788 KB
testcase_10 AC 141 ms
54,740 KB
testcase_11 AC 145 ms
54,640 KB
testcase_12 AC 153 ms
54,932 KB
testcase_13 AC 154 ms
54,924 KB
testcase_14 AC 152 ms
54,892 KB
testcase_15 AC 246 ms
58,684 KB
testcase_16 AC 244 ms
58,796 KB
testcase_17 AC 244 ms
58,788 KB
testcase_18 AC 3 ms
4,504 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 3 ms
4,376 KB
testcase_21 AC 3 ms
4,376 KB
testcase_22 AC 2 ms
4,376 KB
testcase_23 AC 2 ms
4,380 KB
testcase_24 AC 3 ms
4,376 KB
testcase_25 AC 3 ms
4,376 KB
testcase_26 AC 3 ms
4,380 KB
testcase_27 AC 2 ms
4,376 KB
testcase_28 AC 1 ms
4,376 KB
testcase_29 AC 2 ms
4,376 KB
testcase_30 AC 1 ms
4,380 KB
testcase_31 WA -
testcase_32 AC 2 ms
4,380 KB
testcase_33 AC 2 ms
4,380 KB
testcase_34 AC 2 ms
4,380 KB
testcase_35 AC 2 ms
4,380 KB
testcase_36 AC 2 ms
4,376 KB
testcase_37 AC 1 ms
4,376 KB
testcase_38 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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());
    vector<int> F(26, 0);
    int L = S.size();
    for (int i = 0; i < L; i++){
      F[S[i] - 'a']++;
    }
    int C = 0;
    for (int i = 0; i < 26; i++){
      if (F[i] > 0){
        C++;
      }
    }
    assert(C >= 2);
    string S2 = S;
    reverse(S2.begin(), S2.end());
    if (S == S2){
      while (S.size() + 2 <= N * 2){
        char ch = pc[26][N - 1];
        S += ch;
        S += ch;
        ans.push_back(pe[26][N - 1]);
        ans.push_back(pe[26][N - 1]);
      }
      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;
      }
    }
  }
}
0