列车调度思考

原始的贪心模拟列车调度算法如下

#include
using namespace std;
int main(){
	int n,i,j=0,flag,cnt=0,t,a[100010],b[100010];
	cin>>n;
	memset(b,0,sizeof(b));
	cin>>a[0];
	b[0]=a[0];
	for(i=1;i>a[i];
	flag=0;
	if(a[i]>b[j])
	{
		j=j+1;
		b[j]=a[i];
	}
	else{
	for(t=j-1;t>=0;t--)
	{
		if(a[i]>b[t])
		{
			b[t+1]=a[i];
			flag=1;
			
			break;
			
		}
		
	}
	if(flag==0)
	{
	b[0]=a[i];
	}
	}
	
	}
	for(i=0;i

不会超时有非常简洁的代码如下:

#include 
using namespace std; 
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
const int N = 1e5+200;

int n,a,dp[N];

int main(){
    scanf("%d",&n);
    fill(dp,dp+n,INT_MAX);
    for(int i=0;i

由于集合自身有序,考虑set代替数组可能更加简单

#include
using namespace std;
int main(){
	int n,i,j=0,flag,cnt=0,t,a[100010],b[100010];
	cin>>n;
	set c;
	for(i=0;i>t;
		c.insert(t);
		if(c.upper_bound(t)!=c.end())
		{
			c.erase(c.upper_bound(t));
			
		}
	}
	cout<

你可能感兴趣的:(C语言,天梯赛)