problem1 link

枚举每一种大于等于$n$的计算其概率即可。

problem2 link

首先二分答案,然后计算。令$f[i][j]$表示移动完前$i$最后一个在位置$j$的最小代价。

problem3 link

假如一个数质因子分解为$n=p_{1}^{x_{1}}p_{2}^{x_{2}}..p_{t}^{x_{t}}$,那么其约数的个数为$(x_{1}+1)(x_{2}+1)..(x_{t}+1)$

所以只需要将$k$分解成若干数字之积,然后分配每个约数最小的一些质数即可。

令$f[i][j]$表示到第$i$个质数,还剩下的数字之积为$j$的最小值。

code for problem1

import java.util.*;
import java.math.*;
import static java.lang.Math.*; public class DrawingMarbles { public double sameColor(int[] colors,int n) {
int m=0;
for(int i=0;i<colors.length;++i) {
m+=colors[i];
}
double result=0;
for(int i=0;i<colors.length;++i) {
if(colors[i]<n) {
continue;
}
double t=1;
for(int k=0;k<n;++k) {
t*=1.0*(colors[i]-k)/(m-k);
}
result+=t;
}
return result;
}
}

  

code for problem2

import java.util.*;
import java.math.*;
import static java.lang.Math.*; public class ConnectTheCities { public int minimalRange(int distance, int funds, int[] position) {
Arrays.sort(position);
int low=1,high=distance;
int result=high;
while(low<=high) {
int mid=(low+high)>>1;
if(check(mid,distance,funds,position)) {
result=Math.min(result,mid);
high=mid-1;
}
else {
low=mid+1;
}
}
return result;
}
boolean check(int mid,int distance,int funds,int[] positions) {
final int n=positions.length;
int[][] f=new int[n+1][distance+1];
for(int i=0;i<n+1;++i) {
for(int j=0;j<distance+1;++j) {
f[i][j]=-1;
}
}
f[0][0]=0;
for(int i=1;i<=n;++i) {
for(int j=0;j<distance+1;++j) {
if(-1==f[i-1][j]) {
continue;
}
for(int k=j;k<=j+mid&&k<=distance;++k) {
final int cost=f[i-1][j]+Math.abs(positions[i-1]-k);
if(cost>funds) {
continue;
}
if(f[i][k]==-1||f[i][k]>cost) {
f[i][k]=cost;
}
}
}
}
for(int i=distance-mid;i<=distance;++i) {
if(i>=0&&f[n][i]!=-1) {
return true;
}
}
return false;
}
}

  

code for problem3

import java.util.*;
import java.math.*;
import static java.lang.Math.*; public class NumberOfDivisors { final static int N=100;
final static int MAX=50000;
final static long INF=1000000000000000000L; long[][] f=new long[N][MAX+1];
int[] p=new int[N]; public long smallestNumber(int n) {
if(n==1) {
return 1;
}
for(int i=0,k=2;i<N;++i) {
while(!isPrime(k)) {
++k;
}
p[i]=k++;
}
for(int i=0;i<N;++i) {
for(int j=0;j<n+1;++j) {
f[i][j]=-1;
}
}
return dfs(0,n)<=INF?dfs(0,n):-1;
} long dfs(int id,int n) {
if(n==1) {
return 1;
}
if(f[id][n]!=-1) {
return f[id][n];
}
f[id][n]=pow(p[id],n-1);
for(int i=2;i*i<=n;++i) {
if(n%i!=0) {
continue;
}
for(int j=0;j<2;++j) {
final int cur=j==0?i:n/i;
final int nxt=n/cur;
long t=pow(p[id],cur-1);
if(t>INF/dfs(id+1,nxt)) {
t=INF+1;
}
else {
t*=dfs(id+1,nxt);
}
if(f[id][n]>t&&t!=INF+1) {
f[id][n]=t;
}
}
}
return f[id][n];
} long pow(long n,long m) {
long result=1;
while(m>0) {
if(1==(m&1)) {
if(result>INF/n) {
return INF+1;
}
result*=n;
if(m==1) {
break;
}
}
if(n>INF/n) {
return INF+1;
}
n=n*n;
m>>=1;
}
return result;
} boolean isPrime(int x) {
for(int i=2;i*i<=x;++i) {
if(x%i==0) {
return false;
}
}
return true;
}
}

  

topcoder srm 370 div1的更多相关文章

  1. Topcoder SRM 643 Div1 250<peter_pan>

    Topcoder SRM 643 Div1 250 Problem 给一个整数N,再给一个vector<long long>v; N可以表示成若干个素数的乘积,N=p0*p1*p2*... ...

  2. Topcoder Srm 726 Div1 Hard

    Topcoder Srm 726 Div1 Hard 解题思路: 问题可以看做一个二分图,左边一个点向右边一段区间连边,匹配了左边一个点就能获得对应的权值,最大化所得到的权值的和. 然后可以证明一个结 ...

  3. topcoder srm 714 div1

    problem1 link 倒着想.每次添加一个右括号再添加一个左括号,直到还原.那么每次的右括号的选择范围为当前左括号后面的右括号减去后面已经使用的右括号. problem2 link 令$h(x) ...

  4. topcoder srm 738 div1 FindThePerfectTriangle(枚举)

    Problem Statement      You are given the ints perimeter and area. Your task is to find a triangle wi ...

  5. Topcoder SRM 602 div1题解

    打卡- Easy(250pts): 题目大意:rating2200及以上和2200以下的颜色是不一样的(我就是属于那个颜色比较菜的),有个人初始rating为X,然后每一场比赛他的rating如果增加 ...

  6. Topcoder SRM 627 div1 HappyLettersDiv1 : 字符串

    Problem Statement      The Happy Letter game is played as follows: At the beginning, several players ...

  7. Topcoder SRM 584 DIV1 600

    思路太繁琐了 ,实在不想解释了 代码: #include<iostream> #include<cstdio> #include<string> #include& ...

  8. TopCoder SRM 605 DIV1

    604的题解还没有写出来呢.先上605的. 代码去practice房间找. 说思路. A: 贪心,对于每个类型的正值求和,如果没有正值就取最大值,按着求出的值排序,枚举选多少个类型. B: 很明显是d ...

  9. topcoder srm 575 div1

    problem1 link 如果$k$是先手必胜那么$f(k)=1$否则$f(k)=0$ 通过对前面小的数字的计算可以发现:(1)$f(2k+1)=0$,(2)$f(2^{2k+1})=0$,(3)其 ...

随机推荐

  1. json_encode转义中文问题

    默认情况下php的 json_decode 方法会把特殊字符进行转义,还会把中文转为Unicode编码形式. 这使得数据库查看文本变得很麻烦.所以我们需要限制对于中文的转义. 对于PHP5.4+版本, ...

  2. node.js初识01

    1.对于node.js的安装在这里就不做过多的介绍了,安装成功后,可以通过cmd 输入node -v查看node的版本号,如图所示 2.开始我们的hello world,通过cmd进入所属文件夹,输入 ...

  3. C++ new运算符

    new 分配的数据类型:内置数据类型.自定义数据类型. 如果不成功,则 new 将返回零或引发异常:编写自定义异常处理例程并调用 _set_new_handler运行库函数(以您的函数名称作为其参数) ...

  4. HDU 4686 Arc of Dream(矩阵)

    Arc of Dream [题目链接]Arc of Dream [题目类型]矩阵 &题解: 这题你做的复杂与否很大取决于你建的矩阵是什么样的,膜一发kuangbin大神的矩阵: 还有几个坑点: ...

  5. tp连贯操作

    链接数据库 首先写配置文件 复制concentration.php中的 /* 数据库设置 */ 'DB_TYPE' => '', // 数据库类型 'DB_HOST' => '', // ...

  6. 关于hdfs 和hive的数据迁移

    1. 迁移hdfs,使用hadoop 命令 hadoop distcp -pugp  hdfs://localhost:9000/ hdfs://localhost:9000/ 此处示例仅作说明用 2 ...

  7. c++读入优化

    对于输入数据非常大的一些可(变)爱(态)题目,scanf就会大大拖慢程序的运行速度,cin就更不用说了,所以我们要用一种高大上的东西——读入优化. 读入优化的原理其实就是一个一个字符的读入,再组成数字 ...

  8. KindEditor echarts

    var editor; KindEditor.ready(function (K) { editor = K.create('textarea[name="content"]', ...

  9. c++学习笔记(二)-指针

    1. 指向数组的指针 int balance[5] = { 1000, 2, 3, 17, 50 }; int *ptr; ptr = balance; //ptr是指向数组balance的指针 // ...

  10. linux帮助

    不知道的指令但是你想要了解:man 指令 如果知道某一个指令忘记相关参数:在指令后接 -- help 忘记指令: 两个tab