結果

問題 No.1316 Maximum Minimum Spanning Tree
ユーザー hotman78hotman78
提出日時 2020-12-13 22:54:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 6,921 bytes
コンパイル時間 4,456 ms
コンパイル使用メモリ 261,508 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-20 04:30:32
合計ジャッジ時間 26,558 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
4,348 KB
testcase_01 AC 11 ms
4,348 KB
testcase_02 AC 16 ms
4,348 KB
testcase_03 AC 53 ms
4,348 KB
testcase_04 AC 8 ms
4,348 KB
testcase_05 AC 7 ms
4,348 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 497 ms
4,348 KB
testcase_09 WA -
testcase_10 AC 364 ms
4,348 KB
testcase_11 AC 136 ms
4,348 KB
testcase_12 AC 128 ms
4,348 KB
testcase_13 AC 129 ms
4,348 KB
testcase_14 AC 135 ms
4,348 KB
testcase_15 AC 394 ms
4,348 KB
testcase_16 AC 447 ms
4,348 KB
testcase_17 WA -
testcase_18 AC 343 ms
4,348 KB
testcase_19 AC 85 ms
4,348 KB
testcase_20 AC 82 ms
4,348 KB
testcase_21 AC 81 ms
4,348 KB
testcase_22 AC 83 ms
4,348 KB
testcase_23 AC 90 ms
4,348 KB
testcase_24 AC 89 ms
4,348 KB
testcase_25 AC 91 ms
4,348 KB
testcase_26 AC 90 ms
4,348 KB
testcase_27 AC 81 ms
4,348 KB
testcase_28 AC 82 ms
4,348 KB
testcase_29 AC 82 ms
4,348 KB
testcase_30 AC 84 ms
4,348 KB
testcase_31 AC 89 ms
4,348 KB
testcase_32 AC 92 ms
4,348 KB
testcase_33 WA -
testcase_34 AC 91 ms
4,348 KB
testcase_35 AC 87 ms
4,348 KB
testcase_36 AC 83 ms
4,348 KB
testcase_37 WA -
testcase_38 AC 84 ms
4,348 KB
testcase_39 AC 95 ms
4,348 KB
testcase_40 AC 93 ms
4,348 KB
testcase_41 WA -
testcase_42 AC 91 ms
4,348 KB
testcase_43 WA -
testcase_44 AC 471 ms
4,348 KB
testcase_45 WA -
testcase_46 AC 359 ms
4,348 KB
testcase_47 AC 329 ms
4,348 KB
testcase_48 AC 326 ms
4,348 KB
testcase_49 AC 327 ms
4,348 KB
testcase_50 AC 327 ms
4,348 KB
testcase_51 WA -
testcase_52 AC 489 ms
4,348 KB
testcase_53 WA -
testcase_54 AC 364 ms
4,348 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 WA -
testcase_75 WA -
testcase_76 WA -
testcase_77 WA -
testcase_78 WA -
testcase_79 WA -
testcase_80 WA -
testcase_81 AC 371 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#line 1 "code.cpp"
#line 2 "cpplib/util/template.hpp"
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#pragma GCC target("avx2")
#include<bits/stdc++.h>
using namespace std;
struct __INIT__{__INIT__(){cin.tie(0);ios::sync_with_stdio(false);cout<<fixed<<setprecision(15);}}__INIT__;
typedef long long lint;
#define INF (1LL<<60)
#define IINF (1<<30)
#define EPS (1e-10)
#define endl ('\n')
typedef vector<lint> vec;
typedef vector<vector<lint>> mat;
typedef vector<vector<vector<lint>>> mat3;
typedef vector<string> svec;
typedef vector<vector<string>> smat;
template<typename T>using V=vector<T>;
template<typename T>using VV=V<V<T>>;
template<typename T>inline void output(T t){bool f=0;for(auto i:t){cout<<(f?" ":"")<<i;f=1;}cout<<endl;}
template<typename T>inline void output2(T t){for(auto i:t)output(i);}
template<typename T>inline void debug(T t){bool f=0;for(auto i:t){cerr<<(f?" ":"")<<i;f=1;}cerr<<endl;}
template<typename T>inline void debug2(T t){for(auto i:t)output(i);}
#define loop(n) for(long long _=0;_<(long long)(n);++_)
#define rep(i,...) for(auto i:range(__VA_ARGS__)) 
#define rrep(i,...) for(auto i:reversed(range(__VA_ARGS__)))
#define repi(i,a,b) for(lint i=lint(a);i<(lint)(b);++i)
#define rrepi(i,a,b) for(lint i=lint(b)-1;i>=lint(a);--i)
#define irep(i) for(lint i=0;;++i)
inline vector<long long> range(long long n){if(n<=0)return vector<long long>();vector<long long>v(n);iota(v.begin(),v.end(),0LL);return v;}
inline vector<long long> range(long long a,long long b){if(b<=a)return vector<long long>();vector<long long>v(b-a);iota(v.begin(),v.end(),a);return v;}
inline vector<long long> range(long long a,long long b,long long c){if((b-a+c-1)/c<=0)return vector<long long>();vector<long long>v((b-a+c-1)/c);for(int i=0;i<(int)v.size();++i)v[i]=i?v[i-1]+c:a;return v;}
template<typename T>inline T reversed(T v){reverse(v.begin(),v.end());return v;}
#define all(n) begin(n),end(n)
template<typename T,typename E>bool chmin(T& s,const E& t){bool res=s>t;s=min<T>(s,t);return res;}
template<typename T,typename E>bool chmax(T& s,const E& t){bool res=s<t;s=max<T>(s,t);return res;}
const vector<lint> dx={1,0,-1,0,1,1,-1,-1};
const vector<lint> dy={0,1,0,-1,1,-1,1,-1};
#define SUM(v) accumulate(all(v),0LL)
template<typename T,typename ...Args>auto make_vector(T x,int arg,Args ...args){if constexpr(sizeof...(args)==0)return vector<T>(arg,x);else return vector(arg,make_vector<T>(x,args...));}
#define extrep(v,...) for(auto v:__MAKE_MAT__({__VA_ARGS__}))
vector<vector<long long>> __MAKE_MAT__(vector<long long> v){if(v.empty())return vector<vector<long long>>(1,vector<long long>());long long n=v.back();v.pop_back();vector<vector<long long>> ret;vector<vector<long long>> tmp=__MAKE_MAT__(v);for(auto e:tmp)for(long long i=0;i<n;++i){ret.push_back(e);ret.back().push_back(i);}return ret;}
//#include "../graph_tree/graph_template.hpp"
template<typename T,typename E>ostream& operator<<(ostream& out,pair<T,E>v){out<<"("<<v.first<<","<<v.second<<")";return out;}
#line 1 "cpplib/dsu/union_find.hpp"
/**
 * @brief Union Find
 * @see https://ja.wikipedia.org/wiki/%E7%B4%A0%E9%9B%86%E5%90%88%E3%83%87%E3%83%BC%E3%82%BF%E6%A7%8B%E9%80%A0
 */

class UF{
    public:
    vector<int> data;
    int sz;
	public:
    UF(int sz):sz(sz){data.resize(sz,-1);}
    bool unite(int x,int y){
        x=root(x);y=root(y);
        if(x==y)return 0;
        if(data[x]>data[y])swap(x,y);
		data[x]+=data[y];
		data[y]=x;
		sz--;
        return 1;
    }
    inline int root(int x){return data[x]<0?x:data[x]=root(data[x]);}
    inline bool same(int x, int y){return root(x)==root(y);}
    inline int size(){return sz;}
	inline int size(int x){return -data[root(x)];}
};
#line 3 "cpplib/math/binary_search_double.hpp"
/**
 * @brief 二分探索(double)
 */

template<typename F>
long double bs(long double mn,long double mx,F func) {
    long double left = mn;
    long double right =mx;
    for(int i=0;i<100;i++){
        long double mid=(right+left)*0.5;
        if (!func(mid)) right = mid;
        else left = mid;
    }
    return left;
}
#line 1 "cpplib/util/int128.hpp"
std::ostream &operator<<(std::ostream &dest, __int128_t value) {
    std::ostream::sentry s(dest);
    if(s){
        __uint128_t tmp = value < 0 ? -value : value;
        char buffer[128];
        char *d = std::end(buffer);
        do {
            --d;
            *d = "0123456789"[tmp % 10];
            tmp /= 10;
        } while (tmp != 0);
        if (value < 0) {
            --d;
            *d = '-';
        }
        int len = std::end(buffer) - d;
        if (dest.rdbuf()->sputn(d, len) != len) {
            dest.setstate(std::ios_base::badbit);
        }
    }
    return dest;
}
__int128 parse(string &s) {
    __int128 ret = 0;
    for (int i = 0; i < (int)s.length(); i++)
        if ('0' <= s[i] && s[i] <= '9')
            ret = 10 * ret + s[i] - '0';
    return ret;
}
std::istream &operator>>(std::istream &dest, __int128_t& value){
    string s;
    dest>>s;
    value=parse(s);
    return dest;
}
#line 5 "code.cpp"

int main(){
    lint n,m,k;
    cin>>n>>m>>k;
    vec a(m),b(m),c(m),d(m);
    rep(i,m){
        cin>>a[i]>>b[i]>>c[i]>>d[i];
        assert(1<=a[i]&&a[i]<=n);
        assert(1<=b[i]&&b[i]<=n);
        a[i]--;b[i]--;
    }
    auto g=[&](vector<long double> x){
        long double ans=0;
        rep(i,m){
            ans-=d[i]*x[i];
        }
        return ans;
    };
    auto f=[&](vector<long double> x){
        vector<tuple<long double,lint,lint>>v;
        long double ans=0;
        rep(i,m){
            v.emplace_back(c[i]+x[i],a[i],b[i]);
        }
        sort(all(v));
        UF uf(n);
        rep(i,m){
            if(uf.unite(get<1>(v[i]),get<2>(v[i]))){
                ans+=get<0>(v[i])*k;
            }
        }
        return ans;
    };
    auto p=[&](vector<long double> x){
        vector<tuple<long double,lint,lint,lint>>v;
        vector<lint>res(m,0);
        rep(i,m){
            v.emplace_back(c[i]+x[i],a[i],b[i],i);
        }
        sort(all(v));
        UF uf(n);
        rep(i,m){
            if(uf.unite(get<1>(v[i]),get<2>(v[i]))){
                res[get<3>(v[i])]=k;
            }
        }
        return res;
    };
    lint cnt=10000;
    __int128_t pre=0,ans=0;
    {
        vector<long double> x(m,0);
        for(int i=0;i<cnt;++i){
            long double eta=0.1*pow(1.00461579028,i);
            auto kv=p(x);
            rep(i,m){
                x[i]=max(0.L,x[i]+(kv[i]-d[i])/eta);
            }
        }
        pre=round(f(x)+g(x));
    }
    {
        vector<long double> x(m,0);
        for(int i=0;i<cnt;++i){
            long double eta=0.1*pow(1.00507853949,i);
            auto kv=p(x);
            rep(i,m){
                x[i]=max(0.L,x[i]+(kv[i]-d[i])/eta);
            }
        }
        ans=round(f(x)+g(x));
    }
    if(pre!=ans){
        cout<<-1<<endl;
    }else{
        cout<<ans<<endl;
    }
}
0