70分做法:

先预处理出所有点的最近和次近(O(n^2)一遍就OK)

然后暴力求出每个解(O(nm))

//By SiriusRen
#include <cstdio>
#include <cstring>
#include <algorithm>
#define inf 0x3fffffff
using namespace std;
int n,x,rech=0x3fffffff,rec,s,m;
double ans=0x3fffffff;
struct Path{int to,weight,to2,weight2;void init(){weight=inf,weight2=inf,to=-1,to2=-1;}}path[100050];
struct Node{int position,height;}node[100050];
bool cmp(Node a,Node b){return a.height<b.height;}
int main()
{
scanf("%d",&n);
for(int i=1;i<=n;i++){
node[i].position=i;
scanf("%d",&node[i].height);
}
for(int i=1;i<=n;i++){
path[i].init();
for(int j=i+1;j<=n;j++){
if(path[i].weight2>abs(node[j].height-node[i].height)){
path[i].weight2=abs(node[j].height-node[i].height);
path[i].to2=node[j].position;
}
else if(path[i].weight2==abs(node[j].height-node[i].height)&&node[j].height<node[i].height){
path[i].to2=node[j].position;
}
if(path[i].weight2<path[i].weight){
swap(path[i].weight2,path[i].weight);
swap(path[i].to,path[i].to2);
}
else if(path[i].weight2==path[i].weight&&node[j].height<node[i].height){
swap(path[i].to,path[i].to2);
}
}
}
scanf("%d",&x);
for(int i=1;i<=n;i++){
int wei1=0,wei2=0,f=1;
for(int j=i;;){
if(f){
if(wei1+wei2+path[j].weight2<=x)
wei2+=path[j].weight2;
else break;
j=path[j].to2;
}
else{
if(wei1+wei2+path[j].weight<=x)
wei1+=path[j].weight;
else break;
j=path[j].to;
}
f^=1;
}
if(wei1&&(ans>1.0*wei2/wei1||(ans==1.0*wei2/wei1&&rech<node[i].height))){
ans=1.0*wei2/wei1;
rec=i;
rech=node[i].height;
}
}
printf("%d\n",rec);
scanf("%d",&m);
for(int i=1;i<=m;i++){
scanf("%d%d",&s,&x);
int wei1=0,wei2=0,f=1;
for(int j=s;;){
if(f){
if(wei1+wei2+path[j].weight2<=x)
wei2+=path[j].weight2;
else break;
j=path[j].to2;
}
else{
if(wei1+wei2+path[j].weight<=x)
wei1+=path[j].weight;
else break;
j=path[j].to;
}
f^=1;
}
printf("%d %d\n",wei2,wei1);
}
}

100分做法:

先用set 从后向前插入 ,取出左边两个点和右边两个点(如果有的话),排个序。

O(nlogn)求出最近和次近。

然后呢 用倍增求距离

g[i][j]表示从i出发走2^j轮到的地方

f[i][j][0]表示从i出发走2^j轮A走了多少

f[i][j][1]表示从i出发走2^j轮B走了多少

预处理出走一轮到哪儿

g[i][0]=edge[edge[i].to2].to;

f[i][0][0]=edge[i].weight2;

f[i][0][1]=edge[edge[i].to2].weight;



倍增就好了…

g[i][j]=g[g[i][j-1]][j-1];

f[i][j][0]=f[g[i][j-1]][j-1][0]+f[i][j-1][0];

f[i][j][1]=f[g[i][j-1]][j-1][1]+f[i][j-1][1];

//By SiriusRen
#include <set>
#include <cstdio>
#include <cstring>
#include <algorithm>
#define int long long
using namespace std;
int n,xx,x,m,g[100050][20],f[100050][20][2],rech,rec;
double ans=0x3fffffff;
struct Node{int height,position;}node[100050];
struct Node2{int height,Short,position;}jy;
struct Edge{int to,to2,weight,weight2;void init(){weight=weight2=0x3fffffff;}}edge[100050];
set<Node>s;set<Node2>p;
bool operator < (Node a,Node b){return a.height<b.height;}
bool operator < (Node2 a,Node2 b){
if(a.Short!=b.Short)return a.Short<b.Short;
else return a.height<b.height;
}
void init(){
for(int i=n;i>=1;i--){
p.clear();edge[i].init();
s.insert(node[i]);
set<Node>::iterator it=s.find(node[i]),it2=it;
if((++it)!=s.end()){
jy.height=(*it).height;
jy.position=(*it).position;
jy.Short=abs((*it).height-node[i].height);
p.insert(jy);
}
else goto deal1;
if((++it)!=s.end()){
jy.height=(*it).height;
jy.position=(*it).position;
jy.Short=abs((*it).height-node[i].height);
p.insert(jy);
}
deal1:if(it2==s.begin())goto deal;
if((--it2)==s.begin()){
jy.height=(*it2).height;
jy.position=(*it2).position;
jy.Short=abs((*it2).height-node[i].height);
p.insert(jy);
goto deal;
}
else
{
jy.height=(*it2).height;
jy.position=(*it2).position;
jy.Short=abs((*it2).height-node[i].height);
p.insert(jy);
}
it2--;
jy.height=(*it2).height;
jy.position=(*it2).position;
jy.Short=abs((*it2).height-node[i].height);
p.insert(jy);
deal:set<Node2>::iterator itp=p.begin();
if(itp!=p.end()){
edge[i].weight=(*itp).Short;
edge[i].to=(*itp).position;
if((++itp)!=p.end()){
edge[i].weight2=(*itp).Short;
edge[i].to2=(*itp).position;
}
}
}
}
signed main(){
scanf("%lld",&n);
for(int i=1;i<=n;i++){
scanf("%lld",&node[i].height);
node[i].position=i;
}
init();
for(int i=1;i<=n;i++){
g[i][0]=edge[edge[i].to2].to;
f[i][0][0]=edge[i].weight2;
f[i][0][1]=edge[edge[i].to2].weight;
}
for(int j=1;j<=18;j++){
for(int i=1;i<=n;i++){
g[i][j]=g[g[i][j-1]][j-1];
f[i][j][0]=f[g[i][j-1]][j-1][0]+f[i][j-1][0];
f[i][j][1]=f[g[i][j-1]][j-1][1]+f[i][j-1][1];
}
}
scanf("%lld%lld",&x,&m);
for(int i=1;i<=n;i++){
int wei1=0,wei2=0,S=i,temp=x;
for(int j=17;j>=0;j--){
if(temp>=f[S][j][0]+f[S][j][1]&&g[S][j]){
wei1+=f[S][j][0];
wei2+=f[S][j][1];
temp=temp-(f[S][j][0]+f[S][j][1]);
S=g[S][j];
}
}
if(temp>=edge[S].weight2&&edge[S].to2){
temp-=edge[S].weight2;
wei1+=edge[S].weight2;
}
if(wei2&&(ans>1.0*wei1/wei2||(ans==1.0*wei1/wei2&&rech<node[i].height))){
rech=node[i].height;
rec=i;
ans=1.0*wei1/wei2;
}
}
printf("%lld\n",rec);
for(int i=1;i<=m;i++){
scanf("%lld%lld",&xx,&x);
int wei1=0,wei2=0,S=xx,temp=x;
for(int j=17;j>=0;j--){
if(temp>=f[S][j][0]+f[S][j][1]&&g[S][j]){
wei1+=f[S][j][0];
wei2+=f[S][j][1];
temp=temp-(f[S][j][0]+f[S][j][1]);
S=g[S][j];
}
}
if(temp>=edge[S].weight2&&edge[S].to2){
temp-=edge[S].weight2;
wei1+=edge[S].weight2;
}
printf("%lld %lld\n",wei1,wei2);
}
}

NOIP2012 T3开车旅行 set+倍增的更多相关文章

  1. 【NOIP2012】开车旅行(倍增)

    题面 Description 小A 和小B决定利用假期外出旅行,他们将想去的城市从1到N 编号,且编号较小的城市在编号较大的城市的西边,已知各个城市的海拔高度互不相同,记城市 i的海拔高度为Hi,城市 ...

  2. Luogu 1081 【NOIP2012】开车旅行 (链表,倍增)

    Luogu 1081 [NOIP2012]开车旅行 (链表,倍增) Description 小A 和小B决定利用假期外出旅行,他们将想去的城市从1到N 编号,且编号较小的城市在编号较大的城市的西边,已 ...

  3. 2012Noip提高组Day1 T3 开车旅行

    题目描述 小 A 和小 B 决定利用假期外出旅行,他们将想去的城市从 1 到 N 编号,且编号较小的 城市在编号较大的城市的西边,已知各个城市的海拔高度互不相同,记城市 i 的海拔高度为 Hi,城市 ...

  4. 【vijos1780】【NOIP2012】开车旅行 倍增

    题目描述 有\(n\)个城市,第\(i\)个城市的海拔为\(h_i\)且这\(n\)个城市的海拔互不相同.编号比较大的城市在东边.两个城市\(i,j\)之间的距离为\(|h_i-h_j|\) 小A和小 ...

  5. NOIP2012开车旅行 【倍增】

    题目 小 A 和小 B 决定利用假期外出旅行,他们将想去的城市从 1 到 N 编号,且编号较小的城市在编号较大的城市的西边,已知各个城市的海拔高度互不相同,记城市 i 的海拔高度为Hi,城市 i 和城 ...

  6. $Noip2012\ Luogu1081$ 开车旅行 倍增优化$ DP$

    Luogu Description Sol 1.发现对于每个城市,小A和小B的选择是固定的,可以预处理出来,分别记为ga[],gb[] 2.并且,只要知道了出发城市和出发天数,那么当前城市和小A,小B ...

  7. vijos P1780 【NOIP2012】 开车旅行

    描述 小\(A\)和小\(B\)决定利用假期外出旅行,他们将想去的城市从\(1\)到\(N\)编号,且编号较小的城市在编号较大的城市的西边,已知各个城市的海拔高度互不相同,记城市\(i\)的海拔高度为 ...

  8. noip2012 P1081 开车旅行

    小 A 和小 B 决定利用假期外出旅行,他们将想去的城市从 1 到 N 编号,且编号较小的城市在编号较大的城市的西边,已知各个城市的海拔高度互不相同,记城市 i 的海拔高度为Hi,城市 i 和城市 j ...

  9. luogu1081 开车旅行 树上倍增

    题目大意 小A和小B决定利用假期外出旅行,他们将想去的城市从1到N编号,且编号较小的城市在编号较大的城市的西边,已知各个城市的海拔高度互不相同,记城市i 的海拔高度为Hi,城市i 和城市j 之间的距离 ...

随机推荐

  1. Java RTTI(类型信息)(.class 类对象)

    RTTI:Run-Time Type Information,关键词在 Run-Time,运行时的,而非编译期确定的关于类型的信息.运行时的类型信息(RunTime Type Information) ...

  2. centOS 7安装mysql5.6

    方法二:官网下载安装mysql-server # wget http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm # rp ...

  3. SpringBoot(十) 异步任务,定时任务和邮件任务

    异步任务 “异步调用”对应的是“同步调用”,同步调用指程序按照定义顺序依次执行,每一行程序都必须等待上一行程序执行完成之后才能执行:异步调用指程序在顺序执行时,不等待异步调用的语句返回结果就执行后面的 ...

  4. css3子级高度与父级同高,内容垂直居中

    .E-wrap{ overflow: hidden; position: relative; border: 1px solid #ccc; margin: 30px auto 0; width: 5 ...

  5. 自动化框架的两种断言设计(pytest 版)

    自动化测试断言失败时,根据不同业务场景,可能需要立即终止或继续执行.这里以 Appium + pytest 为例. 一. 断言失败立即终止 用途一:用例的预期结果是其他用例的前提条件时,assert ...

  6. Oracle自制事务

    数据库事务是一种单元操作,要么全部操作成功,要么全部失败.在Oracle中,一个事务是从执行第一个数据操作语言(DML)语句开始的,直到执行一个COMMIT语句,提交保存事务,或执行一个ROLLBAC ...

  7. Unity 控制public/private 是否暴露给Inspector面板

    默认情况下Public是暴露给Unity,protect/private是不暴露给Unity的,但有时候想让外部引用,又不想暴露给Unity,怎么办? 对Unity隐藏,使用[HideInInspec ...

  8. Day73-CMDB(资产管理采集)的三种实现方式

    # 采集数据 import subprocess import requests ret = subprocess.getoutput('ipconfig') # print(ret) # 正则处理获 ...

  9. easyUI combobox的使用

    1.需要用到的方法 设置组合框(combobox)值的数组. $('#cc').combobox('setValues', ['001','002']); 设置组合框(combobox)的值. $(' ...

  10. js获取路径参数对象

    /** * 获取页面路径参数值 */ function getParams(key) { var result = {}; var paramStr = encodeURI(window.docume ...