여름방학-역동적계획 III-(A - Constructing Roads In JGShining's Kingdom)
1429 단어 동적 기획
/*
: 2n , n ,n , ,
, , ,
, ,
, ,
,
: , LIS
: (2 for ) , n*logn 。
( )
*/
#include<iostream>
#include<stdio.h>
#include<algorithm>
using namespace std;
const int MAXN=500005;
struct Node
{
int p,c;
};
Node city[MAXN];
int dp[MAXN];
bool cmp(Node a,Node b)// p
{
return a.p<b.p;
}
int main()
{
int n,ans=0;
while(scanf("%d",&n)!=EOF)
{
for(int i=0;i<n;i++)
{
scanf("%d%d",&city[i].p,&city[i].c);
}
sort(city,city+n,cmp);// p 。
int top=0;//LIS
dp[0]=0;//
for(int i=0;i<n;i++)
{
if(city[i].c>dp[top])// LIS
{
dp[++top]=city[i].c;
}
else// city[i].c ,
{
int l=0,r=top,mid;
while(l<=r)
{
mid=(l+r)/2;
if(city[i].c>=dp[mid])
{
l=mid+1;
}
else
{
r=mid-1;
}
}
dp[l]=city[i].c;
}
}
if(top==1)// 。
{
printf("Case %d:
My king, at most %d road can be built.
",++ans,top);
}
else
{
printf("Case %d:
My king, at most %d roads can be built.
",++ans,top);
}
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
01 가방, 완전 가방, 다중 가방 dp(동적 기획 입문 dp)01 가방은 2진법으로 직접 표시할 수 있지만 데이터 양이 너무 많으면 시간을 초과하는 것이 폭력이다.01 가방의 사상은 바로 이 물품에 대해 내가 넣은 가치가 큰지 안 넣은 가치가 큰지 비교하여 방정식 f[i][v...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.