思路:
由题意可知,该题为一棵树,要计算根节点的power值 dfs即可
10 18.0 1.00 3 2 3 5 1 9 1 4 1 7 0 7 2 6 1 1 8 0 9 0 4 0 3
- #include
- using namespace std;
-
- const int N=1e5+10;
- vector
int>> g; - int n;
- double z,r,sum=0;
- bool st[N];
-
- void dfs(int u,double pow)
- {
- if(st[u])
- {
- sum+=pow*g[u][0];
- return;
- }
- for(int i=0;i
size();i++) - dfs(g[u][i],pow*(1-r/100));
- }
-
- int main()
- {
- cin>>n>>z>>r;
- g.resize(n);
- for(int i=0;i
- {
- int k;
- cin>>k;
- if(k==0)
- {
- int x;
- cin>>x;
- st[i]=true;
- g[i].push_back(x);
- }
- else
- {
- for(int j=0;j
- {
- int x;
- cin>>x;
- g[i].push_back(x);
- }
- }
- }
- dfs(0,z);
- cout<<(int)sum;
- }
L1-030 一帮一 - 15
- import java.util.*;
-
- public class Main
- {
- public static void main(String[] args)
- {
- Scanner sc=new Scanner(System.in);
- int n=sc.nextInt();
- String[][] mp=new String[n][2];
- for(int i=0;i
- {
- mp[i][0]=sc.next();
- mp[i][1]=sc.next();
- }
- int[] f=new int[n];
- for(int i=0;i
2;i++) - for(int j=n-1;j>=n/2;j--)
- if(!(mp[i][0].equals(mp[j][0]))&&f[j]==0)
- {
- System.out.println(mp[i][1]+" "+mp[j][1]);
- f[j]=1;
- break;
- }
- }
- }
L1-031 到底是不是太胖了 - 10
- import java.util.*;
-
- public class Main
- {
- public static void main(String[] args)
- {
- Scanner sc=new Scanner(System.in);
- int n=sc.nextInt();
- while(n-->0)
- {
- double h=sc.nextDouble(),w=sc.nextDouble();
- double p=(h-100)*0.9*2;
- if(Math.abs(p-w)
0.1) System.out.println("You are wan mei!");
- else if(w>p) System.out.println("You are tai pang le!");
- else System.out.println("You are tai shou le!");
- }
- }
- }
L1-032 Left-pad - 20
sc.nextLine() //接收回车
- import java.util.*;
-
- public class Main
- {
- public static void main(String[] args)
- {
- Scanner sc=new Scanner(System.in);
- int n=sc.nextInt();
- String ch=sc.next();
- sc.nextLine();//接收回车
- String s=sc.nextLine();
- int len=s.length();
- if(n>=len)
- {
- for(int i=0;i
- System.out.print(s);
- }
- else System.out.print(s.substring(len-n));
- }
- }
-
相关阅读:
REVIT插件 | 建模助手这次的版本更新,BIMer都笑了
CPU核心、使用率、负荷、是否开启超线程、如何排查java程序cpu使用率过高
C---结构体
99% 用户都不知道的 Power BI / Power Query 隐藏功能
[激光原理与应用-31]:典型激光器 -3- 光纤激光器
三菱PLC若想实现以太网无线通讯,需要具备哪些条件?
抖音实战~分享模块~生成短视频二维码
喜马拉雅 Redis 与 Pika 缓存使用军规
【小白专用】VSCode下载和安装与配置PHP开发环境(详细版) 23.11.08
ELK日志采集平台(四)---轻量级采集工具metricbeat
-
原文地址:https://blog.csdn.net/weixin_61639349/article/details/127892874