結果

問題 No.1833 Subway Planning
ユーザー SumitacchanSumitacchan
提出日時 2022-02-05 00:10:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 930 ms / 4,000 ms
コード長 4,001 bytes
コンパイル時間 2,813 ms
コンパイル使用メモリ 212,100 KB
実行使用メモリ 41,628 KB
最終ジャッジ日時 2023-09-02 06:15:18
合計ジャッジ時間 14,625 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 215 ms
41,624 KB
testcase_05 AC 306 ms
41,628 KB
testcase_06 AC 246 ms
41,568 KB
testcase_07 AC 883 ms
41,480 KB
testcase_08 AC 889 ms
41,428 KB
testcase_09 AC 895 ms
41,484 KB
testcase_10 AC 266 ms
27,068 KB
testcase_11 AC 373 ms
26,956 KB
testcase_12 AC 377 ms
27,264 KB
testcase_13 AC 282 ms
26,828 KB
testcase_14 AC 169 ms
29,588 KB
testcase_15 AC 414 ms
29,580 KB
testcase_16 AC 615 ms
32,872 KB
testcase_17 AC 930 ms
29,312 KB
testcase_18 AC 859 ms
27,816 KB
testcase_19 AC 618 ms
28,644 KB
testcase_20 AC 444 ms
22,788 KB
testcase_21 AC 581 ms
35,308 KB
testcase_22 AC 454 ms
31,796 KB
testcase_23 AC 1 ms
4,380 KB
testcase_24 AC 2 ms
4,376 KB
testcase_25 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
//using namespace atcoder;
struct fast_ios { fast_ios(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; } fast_ios_;
#define FOR(i, begin, end) for(int i=(begin);i<(end);i++)
#define REP(i, n) FOR(i,0,n)
#define IFOR(i, begin, end) for(int i=(end)-1;i>=(begin);i--)
#define IREP(i, n) IFOR(i,0,n)
#define Sort(v) sort(v.begin(), v.end())
#define Reverse(v) reverse(v.begin(), v.end())
#define all(v) v.begin(),v.end()
#define SZ(v) ((int)v.size())
#define Lower_bound(v, x) distance(v.begin(), lower_bound(v.begin(), v.end(), x))
#define Upper_bound(v, x) distance(v.begin(), upper_bound(v.begin(), v.end(), x))
#define chmax(a, b) a = max(a, b)
#define chmin(a, b) a = min(a, b)
#define bit(n) (1LL<<(n))
#define debug(x) cout << #x << "=" << x << endl;
#define vdebug(v) { cout << #v << "=" << endl; REP(i_debug, (int)v.size()){ cout << v[i_debug] << ","; } cout << endl; }
#define mdebug(m) { cout << #m << "=" << endl; REP(i_debug, (int)m.size()){ REP(j_debug, (int)m[i_debug].size()){ cout << m[i_debug][j_debug] << ","; } cout << endl;} }
#define pb push_back
#define fi first
#define se second
#define int long long
#define INF 1000000000000000000
template<typename T> istream &operator>>(istream &is, vector<T> &v){ for (auto &x : v) is >> x; return is; }
template<typename T> ostream &operator<<(ostream &os, vector<T> &v){ for(int i = 0; i < (int)v.size(); i++) { cout << v[i]; if(i != (int)v.size() - 1) cout << endl; }; return os; }
template<typename T1, typename T2> ostream &operator<<(ostream &os, pair<T1, T2> p){ cout << '(' << p.first << ',' << p.second << ')'; return os; }
template<typename T> void Out(T x) { cout << x << endl; }
template<typename T1, typename T2> void chOut(bool f, T1 y, T2 n) { if(f) Out(y); else Out(n); }

using vec = vector<int>;
using mat = vector<vec>;
using Pii = pair<int, int>;
using v_bool = vector<bool>;
using v_Pii = vector<Pii>;

//int dx[4] = {1,0,-1,0};
//int dy[4] = {0,1,0,-1};
//char d[4] = {'D','R','U','L'};

//const int mod = 1000000007;
const int mod = 998244353;

template<typename T> 
struct edge{ int to; T cost; int id; };

template<typename T = long long>
struct Graph
{

    int N;
    vector<vector<edge<T>>> E;
    vec depth, dp;

    Graph(int N): N(N){
        E = vector<vector<edge<T>>>(N, vector<edge<T>>(0));
        depth.resize(N);
        dp.resize(N);
    }

    void add_Directed_edge(int from, int to, T cost = 1, int id = 0){
        E[from].push_back(edge<T>({ to, cost, id }));
    }

    void add_Undirected_edge(int v1, int v2, T cost = 1, int id = 0){
        add_Directed_edge(v1, v2, cost, id);
        add_Directed_edge(v2, v1, cost, id);
    }

    void dfs1(int v, int d = 0, int p = -1){
        depth[v] = d;
        for(auto e: E[v]) if(e.to != p){
            dfs1(e.to, d + 1, v);
        }
    }

    bool dfs2(int v, const v_bool &used, int &mm, int p = -1){
        bool f = false;
        for(auto e: E[v]) if(e.to != p){
            bool f0 = used[e.id] | dfs2(e.to, used, mm, v);
            if(f && f0) mm = -INF;
            else if(f0) chmin(mm, e.cost);
            f = f || f0;
        }
        return f;
    }

};

signed main(){

    int N; cin >> N;
    Graph G(N);
    vec a(N - 1), b(N - 1), c(N - 1);
    int cmax = 0;
    REP(i, N - 1){
        cin >> a[i] >> b[i] >> c[i];
        a[i]--; b[i]--;
        G.add_Undirected_edge(a[i], b[i], c[i], i);
        chmax(cmax, c[i]);
    }
    G.dfs1(0);

    int ok = cmax, ng = -1;
    while(ok - ng > 1){
        int x = (ng + ok) / 2;
        v_bool used(N - 1, false);
        int d0 = -1, v0 = -1;
        REP(i, N - 1) if(c[i] > x){
            used[i] = true;
            for(int s: {a[i], b[i]}) if(G.depth[s] > d0){
                d0 = G.depth[s];
                v0 = s;
            }
        }
        int mm = INF;
        G.dfs2(v0, used, mm);
        if(cmax - mm <= x) ok = x;
        else ng = x;
    }
    cout << ok << endl;

    return 0;
}
0