码迷,mamicode.com
首页 > 其他好文 > 详细

POJ 2182

时间:2015-02-25 23:31:18      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:

二分+树状数组水过了,从后往前确定数字即可。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <climits>
#include <string.h>
#include <queue>
#include <cmath>
#include <vector>
#define lowbit(x) ((x)&(-(x)))
using namespace std;
const int N=8010;

int num[N],n;
int order[N];
int ans[N];

void update(int x,int w){
  for(;x<=n;x+=lowbit(x))	num[x]+=w;
}

int sum(int x){
  int s=0;
  for(;x;x-=lowbit(x))	s+=num[x];
  return s;
}

int find(int s){
	int l=0,r=n,m;
	int ret;
	while(l<=r){
		m=(l+r)/2;
		if(sum(m)>=s){
			ret=m;
			r=m-1;
		}
		else l=m+1;
	}
	return ret;
}

int main(){
	int pos;
	while(scanf("%d",&n)!=EOF){
		for(int i=1;i<=n;i++)
		num[i]=0;
		for(int i=1;i<=n;i++)
		update(i,1);
		for(int i=2;i<=n;i++){
			scanf("%d",&order[i]);
		}
		order[1]=0;
		for(int i=n;i>=1;i--){
			pos=find(order[i]+1);
			ans[i]=pos;
			update(pos,-1);
		}
		for(int i=1;i<=n;i++)
		printf("%d\n",ans[i]);
	}
	return 0;
}

  

POJ 2182

标签:

原文地址:http://www.cnblogs.com/jie-dcai/p/4300352.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!