码迷,mamicode.com
首页 > 其他好文 > 详细

【Codeforces 444A】DZY Loves Physics

时间:2019-04-09 00:24:47      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:代码   std   black   turn   生成   out   lov   clu   sync   

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


题意

【题解】


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

【代码】

#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 444A】DZY Loves Physics

标签:代码   std   black   turn   生成   out   lov   clu   sync   

原文地址:https://www.cnblogs.com/AWCXV/p/10674198.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!