【题目链接】: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. Codeforces Round #470 (rated, Div. 2, based on VK Cup 2018 Round 1)B. Primal Sport

    Alice and Bob begin their day with a quick game. They first choose a starting number X0 ≥ 3 and try ...

  2. [luogu2579 ZJOI2005] 沼泽鳄鱼(矩阵快速幂)

    传送门 题目描述 潘塔纳尔沼泽地号称世界上最大的一块湿地,它地位于巴西中部马托格罗索州的南部地区.每当雨季来临,这里碧波荡漾.生机盎然,引来不少游客. 为了让游玩更有情趣,人们在池塘的中央建设了几座石 ...

  3. [读书笔记] Python 数据分析 (八)画图和数据可视化

    ipython3 --pyplot pyplot: matplotlib 画图的交互使用环境

  4. JS数据分组[JSON]

    JS 数据分组 var arr = [{ "id": "1001", "name": "值1", "value ...

  5. Redis-server在windows下闪退

    在win7下使用Redis(windows版)很简单,只需要去Git上下载一个压缩包,解压运行即可.但是前段时间发现win10下双击redis-server既然闪退.非常不解... 在观察了错误日志才 ...

  6. 【Codeforces Round #476 (Div. 2) [Thanks, Telegram!] B】Battleship

    [链接] 我是链接,点我呀:) [题意] 在这里输入题意 [题解] 暴力枚举船的左上角. 然后统计每个点被覆盖次数就好. [代码] #include <bits/stdc++.h> #de ...

  7. WinServer-PowerShell基础

    命令的参数: [-name] 这个参数必须要有,string表示name参数接受什么样的实参,<>表示参数可以接受的实参类型,通常出现set get add都会伴随着必须参数 [-name ...

  8. 将maven中央仓库不存在的jar包添加到本地仓库

    这里有2个案例,需要手动发出Maven命令包括一个 jar 到 Maven 的本地资源库. 要使用的 jar 不存在于 Maven 的中心储存库中. 您创建了一个自定义的 jar ,而另一个 Mave ...

  9. Android.mk添加本地程序和库的经常使用模版

    Android.mk添加本地程序和库的经常使用模版 Android中添加本地程序或者库.这些程序和库与其所在路径没有关系.仅仅与它们的配置文件Android.mk有关.Android.mk文件里可以主 ...

  10. Android使用有道翻译API实如今线翻译功能

    在Android应用中,加入在线翻译的功能,这里调用的是有道翻译的API. 使用有道翻译API.首先要申请一个key,申请地址为:path=data-mode">有道翻译API申请地址 ...