【题目链接】:http://codeforces.com/problemset/problem/131/E

【题意】



给你n*n坐标上的m个皇后的位置;

然后让你求出,能够攻击到0,1,2…8个其他皇后的皇后个数;

(其他皇后可以被前面的皇后挡住,所以最多只能攻击到8个);

【题解】



按照横、纵、正对角、斜对角这4个方向搞;

横坐标的话,将纵坐标升序排;

然后对于每一个横坐标,将横坐标为它的皇后的标号加入到vector里面;

(因为纵坐标升序排了,所以最两端的皇后就是vector里面第一个和最后一个皇后,那两个皇后能攻击到的个数+1,其他的+2);

纵坐标、对角同理;



【Number Of WA】



1



【完整代码】

#include <bits/stdc++.h>
using namespace std;
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define LL long long
#define rep1(i,a,b) for (int i = a;i <= b;i++)
#define rep2(i,a,b) for (int i = a;i >= b;i--)
#define mp make_pair
#define pb push_back
#define fi first
#define se second
#define ms(x,y) memset(x,y,sizeof x)
#define Open() freopen("F:\\rush.txt","r",stdin)
#define Close() ios::sync_with_stdio(0),cin.tie(0) typedef pair<int,int> pii;
typedef pair<LL,LL> pll; const int dx[9] = {0,1,-1,0,0,-1,-1,1,1};
const int dy[9] = {0,0,0,-1,1,-1,1,-1,1};
const double pi = acos(-1.0);
const int N = 1e5+100; struct dian{
int x,y,id;
}; dian a[N];
int n,m,can[N],ans[10];
vector <int> dic[N*3]; void init(){
rep1(i,0,(int) 3e5) dic[i].clear();
} int main(){
//Open();
Close();//scanf,puts,printf not use
//init??????
cin >> n >> m;
rep1(i,1,m){
cin >> a[i].x >> a[i].y;
a[i].id = i;
} sort(a+1,a+1+m,[&] (dian a,dian b){return a.y<b.y;});
rep1(i,1,m){
dic[a[i].x].pb(a[i].id);
}
rep1(i,1,n){
if ((int) dic[i].size()>1){
rep1(j,0,(int) dic[i].size()-1){
if (j==0 || j == (int) dic[i].size()-1){
can[dic[i][j]]++;
}
else
can[dic[i][j]]+=2;
}
}
} sort(a+1,a+1+m,[&] (dian a,dian b){return a.x<b.x;});
init();
rep1(i,1,m){
dic[a[i].y].pb(a[i].id);
}
rep1(i,1,n){
if ((int) dic[i].size()>1){
rep1(j,0,(int) dic[i].size()-1){
if (j==0 || j == (int) dic[i].size()-1){
can[dic[i][j]]++;
}
else
can[dic[i][j]]+=2;
}
}
} init();
rep1(i,1,m){
dic[a[i].x+a[i].y].pb(a[i].id);
}
rep1(i,1,2*n){
if ((int) dic[i].size()>1){
rep1(j,0,(int) dic[i].size()-1){
if (j==0 || j == (int) dic[i].size()-1){
can[dic[i][j]]++;
}
else
can[dic[i][j]]+=2;
}
}
} init();
rep1(i,1,m){
dic[a[i].x-a[i].y+(int)1e5].pb(a[i].id);
}
rep1(i,0,(int)2e5+10){
if ((int) dic[i].size()>1){
rep1(j,0,(int) dic[i].size()-1){
if (j==0 || j == (int) dic[i].size()-1){
can[dic[i][j]]++;
}
else
can[dic[i][j]]+=2;
}
}
} rep1(i,1,m){
ans[can[i]]++;
} rep1(i,0,8){
cout << ans[i]<<(i==8?'\n':' ');
}
return 0;
}

【codeforces 131E】Yet Another Task with Queens的更多相关文章

  1. 【30.93%】【codeforces 558E】A Simple Task

    time limit per test5 seconds memory limit per test512 megabytes inputstandard input outputstandard o ...

  2. 【codeforces 415D】Mashmokh and ACM(普通dp)

    [codeforces 415D]Mashmokh and ACM 题意:美丽数列定义:对于数列中的每一个i都满足:arr[i+1]%arr[i]==0 输入n,k(1<=n,k<=200 ...

  3. 【34.57%】【codeforces 557D】Vitaly and Cycle

    time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...

  4. 【35.29%】【codeforces 557C】Arthur and Table

    time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...

  5. 【23.33%】【codeforces 557B】Pasha and Tea

    time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...

  6. 【55.70%】【codeforces 557A】Ilya and Diplomas

    time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...

  7. 【23.39%】【codeforces 558C】Amr and Chemistry

    time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...

  8. 【47.40%】【codeforces 743B】Chloe and the sequence

    time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...

  9. 【24.34%】【codeforces 560D】Equivalent Strings

    time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...

随机推荐

  1. FaceBook SDK登录功能实现(Eclipse)

    由于公司游戏要进行海外推广,所以要我们接入FBSDK 实现登录,分享,投放,所以写这篇文章,也算是个工作总结.1.资料 (1).FB SDK github源码地址为 (2): [FB SDK中文接入文 ...

  2. HDU 4725 The Shortest Path in Nya Graph [构造 + 最短路]

    HDU - 4725 The Shortest Path in Nya Graph http://acm.hdu.edu.cn/showproblem.php?pid=4725 This is a v ...

  3. linux 模块编译步骤(原)

    linux 模块编译步骤(原) 博主推荐:<Linux命令模板Licote(原)> 本文将直接了当的带你进入linux的模块编译.当然在介绍的过程当中,我也会添加一些必要的注释,以便初学者 ...

  4. javascript深度克隆函数deepClone

    javascript深度克隆函数deepClone function deepClone(obj) { var _toString = Object.prototype.toString; // nu ...

  5. linux部分常用命令

    linux的命令挺多的,下面是我常用的,其实也不可能在敲代码的时候把这个博客拿出来对着写,就是想记录一下,刚开始都觉得不好记,多敲几遍就记住了!!! 创建文件夹:mkdir filename 删除当前 ...

  6. 数据库-mongodb-Gridfs

    GridFS是一种将大型文件存储在MongoDB的文件规范: 数据库支持以BSON格式保存二进制对象. 但是MongoDB中BSON对象最大不能超过4MB. GridFS 规范提供了一种透明的机制,可 ...

  7. HDU 4332 Contest 4

    顶好的一道题.其实,是POJ 2411的升级版.但POJ 2411我用的插头DP来做,一时没想到那道题怎么用状态DP,于是回头看POJ 2411那一道的状态DP,其实也很简单,就是每一行都设一个状态, ...

  8. 怎样制作C#安装程序

    近期须要制作一个C#安装.在网上找了一些资料发现都不是非常完整,最后自己综合了一些资料,而且通过亲自检測,最后成功完毕C#打包成安装程序(打包成最简单的一种安装程序.假设须要更高的功能请自己在开发). ...

  9. 面向程序猿的设计模式 ——GoF《设计模式》读书总结(壹)抽象工厂&amp;生成器

    第一部分:创建型模式 创建型模式抽象了实例化过程. 它们帮助一个系统独立于怎样创建.组合和表示它的那些对象.(把一些小的对象组装成大对象,这个工作由专门的类对象来做) 一个类创建型模式使用继承改变被实 ...

  10. Oracle分析函数ntile

    有这么一个需求.将课程的成绩分成四个等级,为学生打A.B.C.D的绩效. drop table course purge; create table course (   id number,   g ...