結果

問題 No.1612 I hate Construct a Palindrome
ユーザー momoyuumomoyuu
提出日時 2024-08-09 17:39:38
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,852 bytes
コンパイル時間 1,165 ms
コンパイル使用メモリ 117,808 KB
実行使用メモリ 23,720 KB
最終ジャッジ日時 2024-08-09 17:39:49
合計ジャッジ時間 9,307 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
6,944 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 2 ms
6,940 KB
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:70:8: warning: 'wu' may be used uninitialized [-Wmaybe-uninitialized]
   70 |     dfs(dfs,from,to);
      |     ~~~^~~~~~~~~~~~~
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;
    for(int i = 0;i<n;i++){
        for(auto itr:g[i]){
            if(itr.second.first==no) continue;
            wu = i;
            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 = wu;
    ans.push_back(ni);
    int to = n - 1;
    if(cnt%2==1) to = g[n-1][0].first;
    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