topcoder srm 320 div1
problem1 link
两个数字后面都有阶乘符号,可以抵消。
import java.util.*;
import java.math.*;
import static java.lang.Math.*; public class ExtraordinarilyLarge { public String compare(String x, String y) { boolean both=false; while(x.endsWith("!")&&y.endsWith("!")) {
x=x.substring(0,x.length()-1);
y=y.substring(0,y.length()-1);
both=true;
}
boolean bswap=false; if(x.endsWith("!")) {
String t=new String(x);
x=y;
y=t;
bswap=true;
}
long xx=Long.valueOf(x);
if(xx==0&&both) {
xx=1;
} long yy=1;
if(y.endsWith("!")) {
int id=y.indexOf("!");
yy=Long.valueOf(y.substring(0,id));
final int num=y.length()-id;
for(int i=0;i<num&&yy<=xx;++i) {
yy=cal(yy,xx);
}
}
else {
yy=Long.valueOf(y);
if(yy==0&&both) {
yy=1;
}
}
if(xx<yy) {
if(bswap) {
return "x>y";
}
return "x<y";
}
else if(xx==yy) {
return "x=y";
}
else {
if(bswap) {
return "x<y";
}
return "x>y";
}
} long cal(long x,long y) {
if(x==0) {
return 1;
}
long result=1;
for(int i=2;i<=x;++i) {
if(result<=y/i) {
result=result*i;
}
else {
return y+1;
}
}
return result;
}
}
problem2 link
在一个有向无环图上进行dp即可。
import java.util.*;
import java.math.*;
import static java.lang.Math.*; public class ContestSchedule { public double expectedWinnings(String[] contests) {
final int n=contests.length;
int[][] p=new int[n][3];
for(int i=0;i<n;++i) {
String[] t=contests[i].split("\\W+");
assert t.length==3;
for(int j=0;j<3;++j) {
p[i][j]=Integer.valueOf(t[j]);
}
}
boolean[][] g=new boolean[n][n];
for(int i=0;i<n;++i) {
for(int j=0;j<n;++j) {
if(i==j) {
g[i][j]=false;
continue;
}
if(p[i][1]<=p[j][0]) {
g[i][j]=true;
}
else {
g[i][j]=false;
}
}
}
Queue<Integer> queue=new LinkedList<>();
double[] f=new double[n];
boolean[] inq=new boolean[n];
for(int i=0;i<n;++i) {
inq[i]=true;
f[i]=p[i][2]/100.0;
queue.offer(i);
}
while(!queue.isEmpty()) {
final int u=queue.poll();
inq[u]=false;
for(int i=0;i<n;++i) {
if(g[u][i]) {
final double c=p[i][2]/100.0;
if(f[u]+c>f[i]) {
f[i]=f[u]+c;
if(!inq[i]) {
inq[i]=true;
queue.offer(i);
}
}
}
}
}
double result=0;
for(int i=0;i<n;++i) {
result=Math.max(result,f[i]);
}
return result;
}
}
problem3 link
$n,m$中小的那个必定小于9.这样一行一行进行dp即可。
import com.sun.org.apache.xpath.internal.operations.Bool; import java.util.*;
import java.math.*;
import static java.lang.Math.*; public class SeatingPlan { public String expectedTrial(int m, int n, int k) {
if(n<m) {
int x=m;
m=n;
n=x;
}
long[][][] f=new long[n+1][1<<m][k+1];
int[] num=new int[1<<m];
num[0]=0;
for(int i=1;i<(1<<m);++i) {
num[i]=num[i>>1]+(i&1);
}
List<List> g=new ArrayList<>();
for(int i=0;i<(1<<m);++i) {
List<Integer> list=new ArrayList<>();
if(((i>>1)&i)!=0) {
g.add(list);
continue;
}
for(int j=0;j<(1<<m);++j) {
if((i&j)==0&&((j>>1)&j)==0) {
list.add(j);
}
}
g.add(list);
}
f[0][0][0]=1;
for(int i=1;i<=n;++i) {
for(int j=0;j<(1<<m);++j) {
for(int t=0;t<=k;++t) {
if(0==f[i-1][j][t]) {
continue;
}
List list=g.get(j);
for(int p=0;p<list.size();++p) {
int s=(int)list.get(p);
if(t+num[s]>k) {
continue;
}
f[i][s][t+num[s]]+=f[i-1][j][t];
}
}
}
}
long result=0;
for(int i=0;i<(1<<m);++i) {
result+=f[n][i][k];
}
if(result==0) {
return "Impossible!";
}
BigInteger sum=BigInteger.ONE;
for(int i=1;i<=k;++i) {
sum=sum.multiply(int2biginteger(n*m-i+1)).divide(int2biginteger(i));
}
long s=Long.valueOf(sum.toString());
long p=gcd(result,s);
result/=p;
s/=p;
return Long.toString(s)+"/"+Long.toString(result);
} static long gcd(long x,long y) {
return y==0?x:gcd(y,x%y);
} static BigInteger int2biginteger(int x) {
return new BigInteger(Integer.toString(x));
}
}
topcoder srm 320 div1的更多相关文章
- Topcoder SRM 643 Div1 250<peter_pan>
Topcoder SRM 643 Div1 250 Problem 给一个整数N,再给一个vector<long long>v; N可以表示成若干个素数的乘积,N=p0*p1*p2*... ...
- Topcoder Srm 726 Div1 Hard
Topcoder Srm 726 Div1 Hard 解题思路: 问题可以看做一个二分图,左边一个点向右边一段区间连边,匹配了左边一个点就能获得对应的权值,最大化所得到的权值的和. 然后可以证明一个结 ...
- topcoder srm 714 div1
problem1 link 倒着想.每次添加一个右括号再添加一个左括号,直到还原.那么每次的右括号的选择范围为当前左括号后面的右括号减去后面已经使用的右括号. problem2 link 令$h(x) ...
- topcoder srm 738 div1 FindThePerfectTriangle(枚举)
Problem Statement You are given the ints perimeter and area. Your task is to find a triangle wi ...
- Topcoder SRM 602 div1题解
打卡- Easy(250pts): 题目大意:rating2200及以上和2200以下的颜色是不一样的(我就是属于那个颜色比较菜的),有个人初始rating为X,然后每一场比赛他的rating如果增加 ...
- Topcoder SRM 627 div1 HappyLettersDiv1 : 字符串
Problem Statement The Happy Letter game is played as follows: At the beginning, several players ...
- Topcoder SRM 584 DIV1 600
思路太繁琐了 ,实在不想解释了 代码: #include<iostream> #include<cstdio> #include<string> #include& ...
- TopCoder SRM 605 DIV1
604的题解还没有写出来呢.先上605的. 代码去practice房间找. 说思路. A: 贪心,对于每个类型的正值求和,如果没有正值就取最大值,按着求出的值排序,枚举选多少个类型. B: 很明显是d ...
- 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)其 ...
随机推荐
- Windows搭建react-native开发环境
一.目标平台 windows+android 1. 必须软件 python2+ nodejs npm 2. 安装react-native命令行 $ npm install -g react-nativ ...
- PHP面向对象构造和析构函数
一.构造函数 用来生成对象的函数 <?php class Ren{ public $name; public $sex;//性别是人一出生就知道的,可以用构造函数来定义 /*public fun ...
- Git-什么是分支
为了理解什么是分支,我们先要回顾Git是如何存储数据的. Git并不会保存文件的差异值或者说变化量,而是直接保存文件的快照. 在Git中提交时,会保存一个commit对象,该对象包含一个指向暂存内容快 ...
- 2-2:python之控制结构
一.程序流程图 1.用规定的一系列图形.流程线和文字说明算法从开始到结束全部步骤,包括基本操作和控制流程.2.流程图的基本元素包括: 1) 表示相应操作的框 2) 带箭头的流程线 3) 框内必要的文 ...
- vs远程调试 转http://www.cnblogs.com/magicchaiy/archive/2013/05/28/3088274.html
远程调试应用场景 部署环境:ASP.NET(C#)+IIS+Win7 64 bit 很多公司的开发模式都是将开发机器和服务器分开,也就是开发一台机,服务器一台机.而测试人员会在服务器上录入测试数据,此 ...
- RepRap Prusa i3 平台自動補正
RepRap Prusa i3 平台自動補正 平台校正不但費時,而且經常失敗,時在是很令人洩氣!期盼了好一陣子,Marlin終於將平台自動補正的功能加進來了!!這個功能將原本Z軸的Endstop,改裝 ...
- html5-颜色的表示
div{width: 100%;height: 100px;}body{background: url(../pic/2.png);}/*#div1{background: #ff0000;}#div ...
- 20165215 2017-2018-2 《Java程序设计》第4周学习总结
20165215 2017-2018-2 <Java程序设计>第4周学习总结 教材学习内容总结 chapter5 子类与父类 子类的定义使用关键字extends 任何类都是Object类的 ...
- eos中BM与有BM特色的去中心化。区块链世界,白皮书为共识,代码为法律。
比特币挖矿是谁算力高,谁更容易挖到新的比特币,而BM认为这太浪费资源了,于是设计了DPoS:在DPoS系统里,大家不再挖矿.而是指定几个人负责记账,不叫矿工,而叫见证人.比特股里开始是101人,EOS ...
- flask框架----数据库连接池
数据库连接池 flask中是没有ORM的,如果在flask里面连接数据库有两种方式 一:pymysql 二:SQLAlchemy 是python 操作数据库的一个库.能够进行 orm 映射官方文档 s ...