当前位置:网站首页>J - Wooden Sticks poj 1065
J - Wooden Sticks poj 1065
2022-06-26 12:40:00 【YJEthan】
Description
(a) The setup time for the first wooden stick is 1 minute.
(b) Right after processing a stick of length l and weight w , the machine will need no setup time for a stick of length l' and weight w' if l <= l' and w <= w'. Otherwise, it will need 1 minute for setup.
You are to find the minimum setup time to process a given pile of n wooden sticks. For example, if you have five sticks whose pairs of length and weight are ( 9 , 4 ) , ( 2 , 5 ) , ( 1 , 2 ) , ( 5 , 3 ) , and ( 4 , 1 ) , then the minimum setup time should be 2 minutes since there is a sequence of pairs ( 4 , 1 ) , ( 5 , 3 ) , ( 9 , 4 ) , ( 1 , 2 ) , ( 2 , 5 ) .
Input
Output
Sample Input
3 5 4 9 5 2 2 1 3 5 1 4 3 2 2 1 1 2 2 3 1 3 2 2 3 1
Sample Output
2 1 3
输入:第一行的数字表示样例的个数,每两行一个样例;每个样例第一行表示木棒的个数,接下来每两个数字表示一个木棒,第一个数字表示长度第二个数字表示质量。
本题其实是在求升列的最小个数
首先将所有的木棒按照长度从小到大排列,如果长度相等则按照质量从小到大排列。
然后从a[st+1]开始向后扫描,记录不符合条件的第一个木棒,标记为st,下一次扫描从该木棒开始。
#include<cstdio>
#include<algorithm>
#include<iostream>
#include<string>
#include<string.h>
using namespace std;
struct stick
{
int len;
int wei;
}a[5001];
bool used[5001];
bool cmp(stick k1,stick k2)
{
if(k1.len==k2.len)
return k1.wei<k2.wei;
else
return k1.len<k2.len;
}
int main()
{
int T,n,i,j,st,count;
bool flag;
cin>>T;
while(T--)
{
cin>>n;
for(i=0;i<n;i++)
cin>>a[i].len>>a[i].wei;
sort(a,a+n,cmp);
memset(used,false,sizeof(used));
used[0]=true;
st=0;
count=0;
while(st<n)
{
count++;
for(i=st+1,j=st,flag=true;i<n;i++)
{
if(used[i])
continue;
if(a[j].len<=a[i].len&&a[j].wei<=a[i].wei)
{
used[i]=true;
j=i;
}
else
{
if(flag)//标记新的第一个木棒
{
st=i;
flag=false;
}
}
}
if(flag)
break;
}
cout<<count<<endl;
}
return 0;
}边栏推荐
- Less than 40 lines of code to create a blocprovider
- KVM 显卡透传 —— 筑梦之路
- Guacamole installation
- Photoshop 2022 23.4.1增加了哪些功能?有知道的吗
- 国标GB28181协议EasyGBS视频平台TCP主动模式拉流异常情况修复
- 轻流完成与「DaoCloud Enterprise 云原生应用云平台」兼容性认证
- Redis learning - 04 persistence
- 详细讲解C语言10(C语言系列)
- Basic principle and application routine of Beifu PLC rotary cutting
- EasyGBS如何解决对讲功能使用异常?
猜你喜欢
![[BSidesCF 2019]Kookie 1](/img/22/585d081668e67b8389a1b90aaebe9d.png)
[BSidesCF 2019]Kookie 1
![[BSidesCF 2019]Kookie 1](/img/22/585d081668e67b8389a1b90aaebe9d.png)
[BSidesCF 2019]Kookie 1
![Vivado 错误代码 [DRC PDCN-2721] 解决](/img/de/ce1a72f072254ae227fdcb307641a2.png)
Vivado 错误代码 [DRC PDCN-2721] 解决

倍福PLC通过MC_ReadParameter读取NC轴的配置参数

Record a phpcms9.6.3 vulnerability to use the getshell to the intranet domain control

国标GB28181协议EasyGBS级联宇视平台,保活消息出现403该如何处理?

Beifu PLC passes MC_ Readparameter read configuration parameters of NC axis

轻流完成与「DaoCloud Enterprise 云原生应用云平台」兼容性认证

P2393 yyy loves Maths II

Tiger Dao VC products are officially launched, a powerful supplement to seektiger ecology
随机推荐
自定义封装下拉组件
【网络是怎么连接的】第二章(中):一个网络包的发出
OPLG: 新一代云原生可观测最佳实践
[BSidesCF 2019]Kookie 1
软件测试测试常见分类有哪些?
倍福TwinCAT通过Emergency Scan快速检测物理连接和EtherCAT网络
solo 博客系统的 rss 渲染失败
File remote synchronization and backup artifact Rsync
Electron official docs series: Get Started
Tiger Dao VC products are officially launched, a powerful supplement to seektiger ecology
Deep parsing MySQL binlog
第01章_Linux下MySQL的安装与使用
Goto statement to realize shutdown applet
National standard gb28181 protocol easygbs cascaded universal vision platform, how to deal with live message 403?
Tiger Dao VC products are officially launched, a powerful supplement to seektiger ecology
倍福NC轴状态转移图解析
Source code learning: atomicinteger class code internal logic
中科软外包一面
Unit practice experiment 8 - using cmstudio to design microprogram instructions based on basic model machine (1)
Processsing 鼠标交互 学习