結果

問題 No.1612 I hate Construct a Palindrome
ユーザー SSRSSSRS
提出日時 2021-07-21 21:54:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,994 bytes
コンパイル時間 2,005 ms
コンパイル使用メモリ 186,556 KB
実行使用メモリ 60,112 KB
最終ジャッジ日時 2023-09-24 17:05:37
合計ジャッジ時間 11,789 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 5 ms
4,384 KB
testcase_05 AC 385 ms
54,996 KB
testcase_06 AC 395 ms
55,984 KB
testcase_07 AC 391 ms
55,968 KB
testcase_08 AC 384 ms
55,852 KB
testcase_09 AC 381 ms
56,296 KB
testcase_10 AC 382 ms
55,952 KB
testcase_11 AC 376 ms
56,216 KB
testcase_12 AC 394 ms
56,640 KB
testcase_13 AC 401 ms
56,516 KB
testcase_14 AC 397 ms
56,520 KB
testcase_15 AC 478 ms
60,072 KB
testcase_16 AC 470 ms
60,080 KB
testcase_17 AC 478 ms
60,112 KB
testcase_18 AC 5 ms
4,380 KB
testcase_19 AC 5 ms
4,380 KB
testcase_20 AC 5 ms
4,380 KB
testcase_21 AC 5 ms
4,376 KB
testcase_22 AC 6 ms
4,380 KB
testcase_23 AC 5 ms
4,376 KB
testcase_24 AC 5 ms
4,380 KB
testcase_25 AC 6 ms
4,380 KB
testcase_26 AC 6 ms
4,380 KB
testcase_27 AC 1 ms
4,376 KB
testcase_28 AC 2 ms
4,376 KB
testcase_29 AC 1 ms
4,380 KB
testcase_30 AC 2 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,376 KB
testcase_35 AC 2 ms
4,380 KB
testcase_36 AC 1 ms
4,376 KB
testcase_37 AC 1 ms
4,380 KB
testcase_38 AC 1 ms
4,380 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());
    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]);
    }
    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;
      }
    }
  }
}
0