题意:

许多 k 维点, 求这些点之间的最远曼哈顿距离. 并且有 q 次操作, 插入一个点或者删除一个点. 每次操作之后均输出结果.

思路:

用"疑似绝对值"的思想, 维护每种状态下各点的计算值, 插入或删除一个点就更新一次每种状态(用 multiset 或 map 或 priority_queue 实现), 每次求ans时扫一遍最大差值即可.

为了练习STL, 每一个都实现一次.

multiset

/* **********************************************
Author : kuangbin
Created Time: 2013/8/13 18:25:38
File Name : F:\2013ACM练习\2013多校7\1001.cpp
*********************************************** */
//4640MS    14972K
#include <cstdio>
#include <algorithm>
#include <set>
using namespace std;
int a[60010][10];
multiset<int>mst[1<<5]; int main()
{
//freopen("in.txt","r",stdin);
//freopen("out.txt","w",stdout);
int q,k;
while(scanf("%d%d",&q,&k)==2)
{
for(int i = 0;i < (1<<k);i++)
mst[i].clear();
int od,x;
for(int i = 1;i <= q;i++)
{
scanf("%d",&od);
if(od == 0)
{
for(int j = 0;j < k;j++)
scanf("%d",&a[i][j]);
for(int j = 0; j < (1<<k); j++)
{//计算当前点在每种情况下的"疑似绝对值"
int s = 0;
for(int t = 0; t < k;t++)
if(j & (1<<t))
s += a[i][t];
else s -= a[i][t];
mst[j].insert(s);//插入到该种情况下
}
}
else
{
scanf("%d",&x);
for(int j = 0; j < (1<<k); j++)
{//一次操作,插入或删除一个点,都是将这个点对应的所有状态插入每种状态中
int s = 0;//因此,要清除一次操作,就要删除所有状态中的那一个
for(int t = 0; t < k;t++)
if(j & (1<<t))
s += a[x][t];
else s -= a[x][t];
multiset<int>::iterator it = mst[j].find(s);
mst[j].erase(it);
}
}
int ans = 0;
for(int j = 0; j < (1<<k);j++)
{
multiset<int>::iterator it = mst[j].end();
it--;
int t1 = (*it);
it = mst[j].begin();
int t2 = (*it);//用于作差
ans = max(ans,t1-t2);//保留最大值
}
printf("%d\n",ans);
}
}
return 0;
}

map

//8359MS	37928K慢死了

#include <cstdio>
#include <algorithm>
#include <map>
using namespace std; int a[60010][6];
map<int, int> mp[1<<5]; int main()
{
int q,k;
while(scanf("%d %d",&q,&k)==2)
{
for(int i=0;i<1<<k;i++)
mp[i].clear();
int od, x;
for(int i=1;i<=q;i++)
{
scanf("%d",&od);
if(!od)
{
for(int j=0;j<k;j++)
scanf("%d",a[i]+j);
for(int s=0;s<1<<k;s++)
{
int t = 0;
for(int j=0;j<k;j++)
{
if(s & (1<<j)) t += a[i][j];
else t -= a[i][j];
}
mp[s][t]++;
// printf("map[s][t] = %d\n",mp[s][t]);
}
}
else
{
scanf("%d",&x);
for(int s=0;s<1<<k;s++)
{
int t = 0;
for(int j=0;j<k;j++)
{
if(s & (1<<j)) t += a[x][j];
else t -= a[x][j];
}
map<int, int>::iterator it = mp[s].find(t);
mp[s][t]--;
}
}
int ans = 0;
for(int s=0;s<(1<<k);s++)
{
map<int, int>::iterator it = mp[s].end();
it--;
while(it->second==0) it--;
int mx = it->first;///first~~~
it = mp[s].begin();
while(it->second==0) it++;
int mi = it->first;
ans = max(ans, mx - mi);
// printf("mx = %d, mi = %d\n",mx,mi);
}
printf("%d\n",ans);
}
}
}

priority_queue

优先队列只能返回队首元素,因此需要两个队列分别求最大最小值.

对于已删除的元素, 无法直接删除, 可以做标记, 碰到已删除的元素时直接pop掉就行了.

因此入队的就不能仅仅是一个值(前两个有find功能, 不需要额外标号), 而应该是一个记录key和value的结构体.

//2218MS	36748K
#include <cstring>
#include <cstdio>
#include <algorithm>
#include <queue>
using namespace std; int a[6];
bool vis[60005];
typedef struct ascending_node
{
int id,t;
bool operator<(const ascending_node& a) const
{
return t > a.t;
}
}anode;
typedef struct descending_node
{
int id,t;
bool operator<(const descending_node& a) const
{
return t < a.t;
}
}dnode;
/* 2812MS 30224K
priority_queue<anode> apq[1<<5];
priority_queue<dnode> dpq[1<<5];
int main()
{
int q,k;
while(scanf("%d %d",&q,&k)==2)
{
for(int i=0;i<1<<k;i++)
{
while(!apq[i].empty()) apq[i].pop();
while(!dpq[i].empty()) dpq[i].pop();
}*/
/**/
int main()
{
int q,k;
while(scanf("%d %d",&q,&k)==2)
{
priority_queue<anode> apq[1<<5];
priority_queue<dnode> dpq[1<<5];/**/
anode t1;
dnode t2;
memset(vis,false,sizeof(vis));
int od, x;
for(int i=1;i<=q;i++)
{
scanf("%d",&od);
if(!od)
{
for(int j=0;j<k;j++)
scanf("%d",a+j);
for(int s=0;s<1<<k;s++)
{
int t = 0;
for(int j=0;j<k;j++)
{
if(s & (1<<j)) t += a[j];
else t -= a[j];
}
t1.t = t2.t = t;
t1.id = t2.id = i;
apq[s].push(t1);
dpq[s].push(t2);
// printf("map[s][t] = %d\n",mp[s][t]);
}
}
else
{
scanf("%d",&x);
vis[x] = true;
}
int ans = 0;
for(int s=0;s<(1<<k);s++)
{
while(1)
{
t1 = apq[s].top();
if(!vis[t1.id]) break;
apq[s].pop();
}
while(1)
{
t2 = dpq[s].top();
if(!vis[t2.id]) break;
dpq[s].pop();
}
ans = max(ans, t2.t-t1.t);
}
printf("%d\n",ans);
}
}
}

[HDU 4666]Hyperspace[最远曼哈顿距离][STL]的更多相关文章

  1. hdu 4666:Hyperspace(最远曼哈顿距离 + STL使用)

    Hyperspace Time Limit: 20000/10000 MS (Java/Others)    Memory Limit: 65535/65535 K (Java/Others)Tota ...

  2. HDU 4666 最远曼哈顿距离

    题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=4666 关于最远曼哈顿距离的介绍: http://blog.csdn.net/taozifish/ar ...

  3. poj 2926:Requirements(最远曼哈顿距离,入门题)

    Requirements Time Limit: 5000MS   Memory Limit: 65536K Total Submissions: 3908   Accepted: 1318 Desc ...

  4. HDU 4666 Hyperspace (最远曼哈顿距离)

    Hyperspace Time Limit: 20000/10000 MS (Java/Others)    Memory Limit: 65535/65535 K (Java/Others)Tota ...

  5. HDU 4666 Hyperspace (2013多校7 1001题 最远曼哈顿距离)

    Hyperspace Time Limit: 20000/10000 MS (Java/Others)    Memory Limit: 65535/65535 K (Java/Others)Tota ...

  6. 多校联赛7 1001 hdu 4666(最远哈曼顿距离+优先队列)

    吐个糟,尼玛今天被虐成狗了,一题都没搞出来,这题搞了N久居然还是搞不出来,一直TLE,最后还是参考别人代码才领悟的,思路就这么简单, 就是不会转弯,看着模板却不会改,艹,真怀疑自己是不是个笨蛋题意:求 ...

  7. 2018 Multi-University Training Contest 10 CSGO(HDU - 6435)(最远曼哈顿距离)

    有 n 种主武器,m 种副武器.每种武器有一个基础分数k种属性值 X[i] . 选出一种主武器 mw 和一种副武器 sw,使得两种武器的分数和 + 每个属性的差值尽量大.(参考下面的式子) 多维的最远 ...

  8. POJ-2926 Requirements 最远曼哈顿距离

    题目链接:http://poj.org/problem?id=2926 题意:求5维空间的点集中的最远曼哈顿距离.. 降维处理,推荐2009武森<浅谈信息学竞赛中的“0”和“1”>以及&l ...

  9. Codeforces 491B. New York Hotel 最远曼哈顿距离

    最远曼哈顿距离有两个性质: 1: 对每一个点(x,y)  分别计算  +x+y , -x+y , x-y , -x-y 然后统计每种组合的最大值就能够了, 不会对结果产生影响 2: 去掉绝对值 , 设 ...

随机推荐

  1. java中关于线程间协作所用关键字synchronized,wait,notify的用法

    wait/notify()关键字适用于一个线程通知另一个线程所需的条件状态已就绪,最常用于线程在循环中休眠直到获取特定条件的场景. 例如,一个线程一直等待直到队列中有一个组件能够处理:当组件添加到队列 ...

  2. android入门——Activity(1)

    结构图 mainfests文件夹下面有一个AndroidMainfest.xml文件,类似web开发中的web.xml文件负责整个项目的配置,每当我们新建一个activity,都要在这个文件中进行配置 ...

  3. nginx+php的配置

    作了N多次php环境的搭建,网上的方法还真是多,但是实际操作起来总有一些大大小小的出入,很多错误经常让我纠结不已.久病成医,渐渐地我自己就总结出了一些经验.自我感觉良好. 这种方法并非以前所流行的ap ...

  4. R与数据分析旧笔记(五)数学分析基本

    R语言的各种分布函数 rnorm(n,mean=0,sd=1)#高斯(正态) rexp(n,rate=1)#指数 rgamma(n,shape,scale=1)#γ分布 rpois(n,lambda) ...

  5. springmvc的ModelAndView的简单使用

    参考:http://blog.csdn.net/zzjjiandan/article/details/34089313 先上图: MAVTest.java package com.wyl; impor ...

  6. jquery选择器结果是数组时需要主要的一个问题

    代码很简单,如下 <div id="div1"> <span>111</span> <span>222</span> & ...

  7. 关于iPhone

    ---------------------- 美版有三个版本 A S V A版不能用电信卡,S不能发短信 据说还可能再次上锁 V版目前是大家认为最安全的版本 价格也是比A和S贵的 港版比V版唯一的好处 ...

  8. ngrok原理浅析(转载)

    之前在进行 微信Demo开发时曾用到过 ngrok这个强大的tunnel(隧道)工具,ngrok在其github官方页面上的自我诠释是 "introspected tunnels to lo ...

  9. character-RNN模型介绍以及代码解析

    RNN是一个很有意思的模型.早在20年前就有学者发现了它强大的时序记忆能力,另外学术界以证实RNN模型属于Turning-Complete,即理论上可以模拟任何函数.但实际运作上,一开始由于vanis ...

  10. SSHD配置

    http://blog.licess.com/sshd_config/ LIBPCAP http://blog.csdn.net/htttw/article/details/7521053 Oracl ...