博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
南阳236----心急的C小加
阅读量:5275 次
发布时间:2019-06-14

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

1 #include
2 #include
3 #define inf 1<<30 4 using namespace std; 5 6 typedef struct 7 { 8 int l,w; 9 } cus;10 cus a[5005],d[5005];11 int top;12 13 int cmp(cus x,cus y)14 {15 if(x.l == y.l)16 return x.w < y.w;17 return x.l < y.l;18 }19 20 void solven(int x,int y)21 {22 int i;23 for(i=0; i<=top; ++i)24 if(d[i].l <= x && d[i].w <= y)25 {26 d[i].l = x;27 d[i].w = y;28 break;29 }30 if(i == top + 1)31 {32 d[++top].l = x;33 d[top].w = y;34 }35 }36 37 int main()38 {39 int t,n,i;40 scanf("%d",&t);41 while(t--)42 {43 scanf("%d",&n);44 for(i=0; i

 

转载于:https://www.cnblogs.com/qq188380780/p/6736394.html

你可能感兴趣的文章
白话SpringCloud | 第五章:服务容错保护(Hystrix)
查看>>
fabricjs 高级篇(自定义类型)
查看>>
jQuery之end()和pushStack()
查看>>
springboot入门_shiro
查看>>
Bootstrap--响应式导航条布局
查看>>
【好程序员笔记分享】——下拉刷新和上拉加载更多
查看>>
多线程,多进程,协程
查看>>
Hacker News与Reddit的算法比较
查看>>
Learning Python 009 dict(字典)和 set
查看>>
JavaScript中随着鼠标拖拽而移动的块
查看>>
mysql-5.7.21-winx64.zip 下载安装
查看>>
Creating a Custom Login Page for SharePoint 2010
查看>>
jQuery基础修炼圣典—DOM篇(二)jQuery遍历
查看>>
Grunt 常用插件
查看>>
HDU 1021 一道水题
查看>>
php实现倒计时效果
查看>>
如何开发一个npm包并发布
查看>>
进击的 JavaScript(六) 之 this
查看>>
二进制&八进制&十六进制之间的快速转换------ 心算&笔算方法总结
查看>>
The operation couldn’t be completed. (LaunchServicesError error 0.)
查看>>