您的位置:首页 > 其它

HDU 1025 Constructing Roads In JGShining's Kingdom

2014-04-01 16:10 567 查看
说了一大堆,其实就是求一个最长上升子序列,二分优化到nlogn就不会超时啦
 
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <climits>

using namespace std;

const int maxn = 500000 + 5;
const int INF = INT_MAX / 2;
int top[maxn],r[maxn];

int main() {
int n,kase = 0,a,b;
while(~scanf("%d",&n)) {
printf("Case %d:\n",++kase);
int ans = -1;
top[0] = 0;
for(int i = 1;i <= n;i++) {
scanf("%d%d",&a,&b);
r[a] = b; top[i] = INF;
}
for(int i = 1;i <= n;i++) {
int k = lower_bound(top + 1,top + 1 + n,r[i]) - top;
top[k] = r[i];
ans = max(k,ans);
}
printf("My king, at most %d road%s can be built.\n\n",ans,(ans > 1 ? "s" : ""));
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: