博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UVA 437 The Tower of Babylon
阅读量:5282 次
发布时间:2019-06-14

本文共 687 字,大约阅读时间需要 2 分钟。

dp

 

1 #include 
2 #include
3 #include
4 #include
5 using namespace std; 6 7 struct node { 8 int x,y,h; 9 void init (int nx,int ny,int nh){10 x=nx;y=ny;h=nh;11 }12 }d[100];13 14 int dp[100];15 int g[100][100];16 17 bool cmp (node x,node y){18 if (x.x
>n&&n){35 for (int i=0;i
>x[0]>>x[1]>>x[2];38 sort (x,x+3);39 d[i*3].init (x[0],x[1],x[2]);40 d[i*3+1].init (x[0],x[2],x[1]);41 d[i*3+2].init (x[1],x[2],x[0]);42 }43 n*=3;44 sort (d,d+n,cmp);45 memset (g,0,sizeof g);46 for (int i=0;i

 

转载于:https://www.cnblogs.com/gfc-g/p/3877645.html

你可能感兴趣的文章
Codeforces 235 E Number Challenge
查看>>
ubuntu 常见命令整理
查看>>
EJBCA安装教程+postgresql+wildfly10
查看>>
(五十四)涂鸦的实现和截图的保存
查看>>
配置EditPlus使其可以编译运行java程序
查看>>
java中的占位符\t\n\r\f
查看>>
7.14
查看>>
SDN2017 第一次作业
查看>>
MySQL通过frm 和 ibd 恢复数据过程
查看>>
SRS源码——Listener
查看>>
web.xml 4.0 头
查看>>
Java面向对象抽象类案例分析
查看>>
100.Same Tree
查看>>
对SPI、IIC、IIS、UART、CAN、SDIO、GPIO的解释
查看>>
Thymeleaf模板格式化LocalDatetime时间格式
查看>>
庖丁解“学生信息管理系统”
查看>>
Pyltp使用
查看>>
其他ip无法访问Yii的gii,配置ip就可以
查看>>
使用json格式输出
查看>>
border-image属性在chrome中的不同效果
查看>>