結果

問題 No.1612 I hate Construct a Palindrome
ユーザー momoyuumomoyuu
提出日時 2024-08-09 17:43:59
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,919 bytes
コンパイル時間 1,368 ms
コンパイル使用メモリ 116,864 KB
実行使用メモリ 23,720 KB
最終ジャッジ日時 2024-08-09 17:44:06
合計ジャッジ時間 6,554 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 92 ms
14,080 KB
testcase_07 AC 133 ms
13,824 KB
testcase_08 AC 162 ms
17,104 KB
testcase_09 AC 40 ms
10,240 KB
testcase_10 AC 41 ms
10,240 KB
testcase_11 AC 40 ms
10,240 KB
testcase_12 AC 68 ms
13,056 KB
testcase_13 AC 51 ms
13,056 KB
testcase_14 AC 48 ms
11,008 KB
testcase_15 AC 144 ms
22,016 KB
testcase_16 AC 158 ms
21,504 KB
testcase_17 AC 105 ms
15,488 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 4 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 1 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:74:8: warning: 'wv' may be used uninitialized [-Wmaybe-uninitialized]
   74 |     dfs(dfs,from,to);
      |     ~~~^~~~~~~~~~~~~
main.cpp:33:9: note: 'wv' was declared here
   33 |     int wv;
      |         ^~
main.cpp:63:8: warning: 'wu' may be used uninitialized [-Wmaybe-uninitialized]
   63 |     dfs(dfs,0,wu);
      |     ~~~^~~~~~~~~~
main.cpp:31:9: note: 'wu' was declared here
   31 |     int wu,ni;
      |         ^~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

#include<set>
int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int n,m;
    cin>>n>>m;
    vector<vector<pair<int,pair<char,int>>>> g(n);
    set<char> s;
    for(int i = 0;i<m;i++){
        int u,v;
        char c;
        cin>>u>>v>>c;
        u--;v--;
        s.insert(c);
        g[u].push_back({v,{c,i+1}});
        g[v].push_back({u,{c,i+1}});
    }
    if(s.size()==1){
        cout<<-1<<endl;
        return 0;
    }
    char no = g[n-1][0].second.first;
    int wu,ni;
    ni = -1;
    int wv;
    for(int i = 0;i<n;i++){
        for(auto itr:g[i]){
            if(itr.second.first==no) continue;
            wu = i;
            wv = itr.first;
            ni = itr.second.second;
            break;
        }
        if(ni!=-1) break;
    }

    vector<int> vis(n,0);
    bool fn = false;
    vector<int> que;
    auto dfs = [&](auto dfs,int ni,int to) -> void {
        vis[ni]++;
        if(ni==to){
            fn = true;
            return;
        }
        for(auto&itr:g[ni]){
            int nj = itr.first;
            if(vis[nj]) continue;
            que.push_back(itr.second.second);
            dfs(dfs,nj,to);
            if(fn) return;
            que.pop_back();
        }
    };
    dfs(dfs,0,wu);
    vector<int> ans = que;
    int cnt = ans.size();
    que.clear();
    for(int i = 0;i<n;i++) vis[i] = 0;
    int from = wv;
    ans.push_back(ni);
    int to = n - 1;
    cnt++;
    if(cnt%2==1) to = g[n-1][0].first;
    fn = false;
    dfs(dfs,from,to);
    for(int i:que) ans.push_back(i);
    for(int i = 0;i<cnt;i++){
        ans.push_back(g[n-1][0].second.second);
        if(to==n-1) {
            to = g[n-1][0].first;
        }else{
            to = n-1;
        }
    }
    cout<<ans.size()<<endl;
    for(int i = 0;i<ans.size();i++) cout<<ans[i]<<endl;
}

0