标签:other too set int gets oat each put nes
InputThe first line of input gives T, the number of cases. For each scenario, the first line of input gives a floating point number P, the probability Roy needs to be below, and an integer N, the number of banks he has plans for. Then follow N lines, where line j gives an integer Mj and a floating point number Pj .
Bank j contains Mj millions, and the probability of getting caught from robbing it is Pj .OutputFor each test case, output a line with the maximum number of millions he can expect to get while the probability of getting caught is less than the limit set.
Notes and Constraints
0 < T <= 100
0.0 <= P <= 1.0
0 < N <= 100
0 < Mj <= 100
0.0 <= Pj <= 1.0
A bank goes bankrupt if it is robbed, and you may assume that all probabilities are independent as the police have very low funds.Sample Input
3 0.04 3 1 0.02 2 0.03 3 0.05 0.06 3 2 0.03 2 0.03 3 0.05 0.10 3 1 0.03 2 0.02 3 0.05
Sample Output
2 4 6
代码:
import java.util.Arrays; import java.util.Scanner; public class E { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int t = sc.nextInt(); while(t-->0){ double v = sc.nextDouble(); int n = sc.nextInt(); double vo[] = new double[1050]; int val[] = new int[1050]; int sum = 0; for(int i=0;i<n;i++){ val[i] = sc.nextInt(); vo[i] = sc.nextDouble(); sum+=val[i]; } double[] dp = new double[10500]; Arrays.fill(dp, 0); dp [0] = 1; for(int i=0;i<n;i++){ for(int j=sum;j>=val[i];j--){ dp[j] = Math.max(dp[j], dp[j-val[i]]*(1-vo[i])); // System.out.println(j+" :"+dp[j]); } } for(int i=sum;i>=0;i--){ if(dp[i]>=(1-v)){ System.out.println(i); break; } } } } }
标签:other too set int gets oat each put nes
原文地址:http://www.cnblogs.com/upstart/p/6703452.html