【随机化】bzoj4080 [Wf2014]Sensor Network

#include<cstdio>
#include<algorithm>
#include<cmath>
using namespace std;
typedef double db;
struct Point{int x,y,p;}p[101],path[101];
int n,m,ans,apa[101];
int sqr(int x){return x*x;}
int dis(Point a,Point b){return sqr(a.x-b.x)+sqr(a.y-b.y);}
int e;
bool check(int x)
{
    for(int i=1;i<=e;++i)
      if(dis(p[x],path[i])>m*m)
        return 0;
    return 1;
}
int main()
{
    scanf("%d%d",&n,&m);
    for(int i=1;i<=n;++i)
      {
        scanf("%d%d",&p[i].x,&p[i].y);
        p[i].p=i;
      }
    for(int i=1;i<=1000;++i)
      {
        random_shuffle(p+1,p+1+n);
        e=0;
        for(int j=1;j<=n;++j)
          if(check(j))
            path[++e]=p[j];
        if(e>ans)
          {
            ans=e;
            for(int j=1;j<=e;++j)
              apa[j]=path[j].p;
          }
      }
    printf("%d\n",ans);
    for(int i=1;i<ans;++i)
      printf("%d ",apa[i]);
    printf("%d\n",apa[ans]);
    return 0;
}
时间: 2024-10-22 05:17:24

【随机化】bzoj4080 [Wf2014]Sensor Network的相关文章

【BZOJ4080】[Wf2014]Sensor Network 随机化

[BZOJ4080][Wf2014]Sensor Network Description 魔法炮来到了帝都,除了吃特色菜之外,还准备去尝一尝著名的北京烤鸭.帝都一共有n(1<=1<=100)个烤鸭店,可以看成是二维平面内的点.不过由于魔法炮在吃烤鸭之前没有带钱,所以吃完烤鸭之后只能留下刷盘子.刷完盘子之后,魔法炮除了不用付饭费之外,老板还会奖励他d(1<=d<=10000)元钱.魔法炮是一个特么喜欢吃烤鸭的孩子,所以在去过一家烤鸭店之后,魔法炮还准备去其他的烤鸭店.但是由于帝都路费

BZOJ 4080 Wf2014 Sensor Network 随机化

题目大意:给定平面上的n个点,求一个最大的点集,使得两两之间距离不超过d 爆搜T到死,加什么剪枝都没用-- 随机化大法好 每次随机一个序列,依次贪心加入,然后更新答案 据说很靠谱?反正写完直接过了 #include <bitset> #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> #define M 110 using namespace

【BZOJ4080】【WF2014】Sensor Network [随机化]

Sensor Network Time Limit: 2 Sec  Memory Limit: 128 MB[Submit][Status][Discuss] Description 魔法炮来到了帝都,除了吃特色菜之外,还准备去尝一尝著名的北京烤鸭. 帝都一共有n个烤鸭店,可以看成是二维平面内的点. 不过由于魔法炮在吃烤鸭之前没有带钱,所以吃完烤鸭之后只能留下刷盘子. 刷完盘子之后,魔法炮除了不用付饭费之外,老板还会奖励他d元钱. 魔法炮是一个特么喜欢吃烤鸭的孩子,所以在去过一家烤鸭店之后,魔法

泛在传感器网络(Ubiquitous Sensor Network; USN)

http://wiki.mbalib.com/wiki/%E6%B3%9B%E5%9C%A8%E4%BC%A0%E6%84%9F%E5%99%A8%E7%BD%91%E7%BB%9C 什么是泛在传感器网络 泛在传感器网络是指由智能传感器结点组成的网络,可以以“任何地点.任何时间.任何人.任何物”的形式部署.该技术具有巨大的潜力,可用于在广泛领域内推动新的应用和服务,从安全保卫.环境监控到推动个人生产力和增强国家竞争力. [编辑] 泛在传感器网络的提出 此定义出自2008年2月ITU—T的研究报告

Coremicro Reconfigurable Embedded Smart Sensor Node

A Coremicro Reconfigurable Embedded Smart Sensor Node has the capability of hosting intelligent algorithms to support health monitoring applications and has optional standardized software communications stack. The purpose of this present invention is

Indexing Sensor Data

In particular embodiments, a method includes, from an indexer in a sensor network, accessing a set of sensor data that includes sensor data aggregated together from sensors in the sensor network, one or more time stamps for the sensor data, and metad

Network management system scheduling for low power and lossy networks

In one embodiment, a network management system (NMS) determines an intent to initialize a request-response exchange with a plurality of clients in a low power and lossy network (LLN). In response, the NMS adaptively schedules corresponding responses

Methods for Using Message Queuing Telemetry Transport for Sensor Networks to Support Sleeping Devices

Methods support a sleep mode for an embedded device. Embedded devices like sensors and actuators used in wireless sensor networks have a limited power supply. To conserve energy and thus increase the lifetime of these devices, the devices should be p

线性时间O(n)内求数组中第k大小的数

--本文为博主原创,转载请注明出处 因为最近做的WSN(wireless sensor network)实验要求用3个传感器节点接受2000个包的数据并算出一些统计量,其中就有算出中位数这么一个要求,且其按算出数据的时间长短排名给分,所以就在考虑一个线性时间的求第k大小的数的算法. 鉴于传感器只有10k的内存,以及考虑到快排的过程利于简化,所以采用快速排序(以及由之前课程中做的排序算法的测试得知,快排在相同时间复杂度的排序中有较大的优越性,最重要的就是快排好写). 算法基本思想 快速排序的思想就