洛谷P2868

未A

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<algorithm>
 4 #include<queue>
 5 #include<cstdlib>
 6 #include<cmath>
 7
 8 using namespace std;
 9 const int N=1001;
10
11 struct node{
12     int u,v,w,nxt;
13 };
14 node e[N];
15
16 int now=1;
17 int head[N];
18 int dis[N];
19 int vis[N];
20 double hap[N];
21 double ans=0.0;
22 int n,m;
23 queue<int>q;
24
25 void add(int u,int v,int w)
26 {
27     e[now].u=u;
28     e[now].v=v;
29     e[now].w=w;
30     e[now].nxt=head[u];
31     head[u]=now++;
32 }
33
34 void spfa(int a)
35 {
36     q.push(a);
37     vis[a]=1;
38     for(int i=2;i<=n;i++)
39     {
40         dis[i]=999999;
41     }
42     int ss=q.empty();
43     while(!q.empty())
44     {
45         int top=q.front();
46         q.pop();
47         vis[top]=0;
48         for(int i=head[top];i!=-1;i=e[i].nxt)
49         {
50             int v=e[i].v;
51             int w=e[i].w;
52             double happ=(hap[top]+hap[v])/(double)w;
53             if(happ>ans)
54             {
55                 ans=happ;
56                 if(vis[v]==0)
57                 {
58                     vis[v]=1;
59                     q.push(v);
60                 }
61             }
62             else
63             {
64                 printf("%.2lf",(ans));
65                 exit(0);
66             }
67         }
68     }
69 }
70
71 int main()
72 {
73     cin>>n>>m;
74     for(int i=1;i<=n;i++)
75     {
76         head[i]=-1;
77     }
78     for(int i=1;i<=n;i++)
79     {
80         cin>>hap[i];
81     }
82     for(int i=1;i<=m;i++)
83     {
84         int u,v,w;
85         cin>>u>>v>>w;
86         add(u,v,2*w);
87     }
88     spfa(1);
89 }
时间: 2024-12-23 10:39:49

洛谷P2868的相关文章

洛谷P2868 [USACO07DEC]观光奶牛 Sightseeing Cows

题目描述 Farmer John has decided to reward his cows for their hard work by taking them on a tour of the big city! The cows must decide how best to spend their free time. Fortunately, they have a detailed city map showing the L (2 ≤ L ≤ 1000) major landma

洛谷 P2868 [USACO07DEC]观光奶牛Sightseeing Cows

题目描述 Farmer John has decided to reward his cows for their hard work by taking them on a tour of the big city! The cows must decide how best to spend their free time. Fortunately, they have a detailed city map showing the L (2 ≤ L ≤ 1000) major landma

洛谷 P2709 BZOJ 3781 小B的询问

题目描述 小B有一个序列,包含N个1~K之间的整数.他一共有M个询问,每个询问给定一个区间[L..R],求Sigma(c(i)^2)的值,其中i的值从1到K,其中c(i)表示数字i在[L..R]中的重复次数.小B请你帮助他回答询问. 输入输出格式 输入格式: 第一行,三个整数N.M.K. 第二行,N个整数,表示小B的序列. 接下来的M行,每行两个整数L.R. 输出格式: M行,每行一个整数,其中第i行的整数表示第i个询问的答案. 输入输出样例 输入样例#1: 6 4 3 1 3 2 1 1 3

洛谷1231 教辅的组成

洛谷1231 教辅的组成 https://www.luogu.org/problem/show?pid=1231 题目背景 滚粗了的HansBug在收拾旧语文书,然而他发现了什么奇妙的东西. 题目描述 蒟蒻HansBug在一本语文书里面发现了一本答案,然而他却明明记得这书应该还包含一份练习题.然而出现在他眼前的书多得数不胜数,其中有书,有答案,有练习册.已知一个完整的书册均应该包含且仅包含一本书.一本练习册和一份答案,然而现在全都乱做了一团.许多书上面的字迹都已经模糊了,然而HansBug还是可

洛谷教主花园dp

洛谷-教主的花园-动态规划 题目描述 教主有着一个环形的花园,他想在花园周围均匀地种上n棵树,但是教主花园的土壤很特别,每个位置适合种的树都不一样,一些树可能会因为不适合这个位置的土壤而损失观赏价值. 教主最喜欢3种树,这3种树的高度分别为10,20,30.教主希望这一圈树种得有层次感,所以任何一个位置的树要比它相邻的两棵树的高度都高或者都低,并且在此条件下,教主想要你设计出一套方案,使得观赏价值之和最高. 输入输出格式 输入格式: 输入文件garden.in的第1行为一个正整数n,表示需要种的

洛谷 P2801 教主的魔法 题解

此文为博主原创题解,转载时请通知博主,并把原文链接放在正文醒目位置. 题目链接:https://www.luogu.org/problem/show?pid=2801 题目描述 教主最近学会了一种神奇的魔法,能够使人长高.于是他准备演示给XMYZ信息组每个英雄看.于是N个英雄们又一次聚集在了一起,这次他们排成了一列,被编号为1.2.…….N. 每个人的身高一开始都是不超过1000的正整数.教主的魔法每次可以把闭区间[L, R](1≤L≤R≤N)内的英雄的身高全部加上一个整数W.(虽然L=R时并不

洛谷P1466 集合 Subset Sums

洛谷P1466 集合 Subset Sums这题可以看成是背包问题 用空间为 1--n 的物品恰好填充总空间一半的空间 有几种方案 01 背包问题 1.注意因为两个交换一下算同一种方案,所以最终 要 f [ v ] / 2 2.要开 long long 1 #include <cstdio> 2 #include <cstdlib> 3 #include <cmath> 4 #include <cstring> 5 #include <string&g

洛谷P1160 队列安排 链表

洛谷P1160 队列安排   链表 1 #include <cstdio> 2 #include <cstring> 3 #include <cmath> 4 #include <cstdlib> 5 #include <string> 6 #include <algorithm> 7 #include <iomanip> 8 #include <iostream> 9 using namespace std

洛谷 P3367 并查集模板

#include<cstdio> using namespace std; int n,m,p; int father[2000001]; int find(int x) { if(father[x]!=x) father[x]=find(father[x]); return father[x]; } void unionn(int i,int j) { father[j]=i; } int main() { scanf("%d%d",&n,&m); for