Codeforces 444ADZY Loves Physics

Posted awcxv

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 444ADZY Loves Physics相关的知识,希望对你有一定的参考价值。

【链接】 我是链接,点我呀:)
【题意】


题意

【题解】


两个点的子图他们的"密度"是比所有联通生成子图都要大的
"只要胆子大,遇到什么问题都不怕!"

【代码】

#include <bits/stdc++.h>
#define rep1(i,a,b) for (int i = a;i <= b;i++)
#define rep2(i,a,b) for (int i = a;i>= b;i--)
#define ll long long
using namespace std;

const int N = 500;

int n,m;
int a[N+10];

int main(){
    ios::sync_with_stdio(0),cin.tie(0);
    cin >> n >> m;
    rep1(i,1,n) cin >> a[i];
    double ans = 0;
    rep1(i,1,m){
        int x,y,z;
        cin >> x >> y >> z;
        double temp = 1.0*(a[x]+a[y])/z;
        ans = max(ans,temp);
    }
    cout<<fixed<<setprecision(15)<<ans<<endl;
    return 0;
}

以上是关于Codeforces 444ADZY Loves Physics的主要内容,如果未能解决你的问题,请参考以下文章

codeforces - 444c DZY Loves Colors(线段树+染色)

CF444E. DZY Loves Planting

[CF444E]DZY Loves Planting

CF444A DZY Loves Physics

codeforces 446A DZY Loves Sequences

CodeForces 445B. DZY Loves Chemistry(并查集)