結果

問題 No.1898 Battle and Exchange
ユーザー ぷらぷら
提出日時 2022-04-08 21:51:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,083 bytes
コンパイル時間 3,065 ms
コンパイル使用メモリ 219,280 KB
実行使用メモリ 15,908 KB
最終ジャッジ日時 2024-05-06 07:27:17
合計ジャッジ時間 23,542 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 20 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
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 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 186 ms
9,728 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 113 ms
7,552 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int N,M;
    cin >> N >> M;
    vector<vector<int>>road(N);
    for(int i = 0; i < M; i++) {
        int U,V;
        cin >> U >> V;
        U--;
        V--;
        road[U].push_back(V);
        road[V].push_back(U);
    }
    vector<vector<int>>C(N,vector<int>(3));
    for(int i = 0; i < N; i++) {
        cin >> C[i][0] >> C[i][1] >> C[i][2];
        sort(C[i].rbegin(),C[i].rend());
    }
    int l = C[0][0]+C[0][1]+C[0][2]-1,r = 1001001001;
    while (l+1 < r) {
        int mid = (l+r)/2;
        vector<int>dist(N,-1);
        dist[0] = 0;
        int a = mid-2,b = C[0][0],c = 1;
        queue<int>que;
        que.push(0);
        priority_queue<pair<int,int>,vector<pair<int,int>>,greater<pair<int,int>>>que2;
        while (!que.empty()) {
            int x = que.front();
            que.pop();
            for(int i:road[x]) {
                if(dist[i] == -1) {
                    que2.push({C[i][0]+C[i][1]+C[i][2],i});
                }
            }
            while (!que2.empty()) {
                pair<int,int> x = que2.top();
                if(x.first < a+b+c) {
                    if(c == 1) {
                        c = C[0][1];
                    }
                    que2.pop();
                    dist[x.second] = 0;
                    que.push(x.second);
                    for(int i = 0; i < 3; i++) {
                        if(c < C[x.second][i]) {
                            c = C[x.second][i];
                        }
                        else if(b < C[x.second][i]) {
                            b = C[x.second][i];
                        }
                        else if(a < C[x.second][i]) {
                            a = C[x.second][i];
                        }
                    }
                }
                else {
                    break;
                }
            }
        }
        if(dist[N-1] != -1) {
            r = mid;
        }
        else {
            l = mid;
        }
    }
    cout << r-2 << " " << 1 << " " << 1 << endl;
}
0