【codeforces 131E】Yet Another Task with Queens
【题目链接】: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的更多相关文章
- 【30.93%】【codeforces 558E】A Simple Task
time limit per test5 seconds memory limit per test512 megabytes inputstandard input outputstandard o ...
- 【codeforces 415D】Mashmokh and ACM(普通dp)
[codeforces 415D]Mashmokh and ACM 题意:美丽数列定义:对于数列中的每一个i都满足:arr[i+1]%arr[i]==0 输入n,k(1<=n,k<=200 ...
- 【34.57%】【codeforces 557D】Vitaly and Cycle
time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...
- 【35.29%】【codeforces 557C】Arthur and Table
time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...
- 【23.33%】【codeforces 557B】Pasha and Tea
time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...
- 【55.70%】【codeforces 557A】Ilya and Diplomas
time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...
- 【23.39%】【codeforces 558C】Amr and Chemistry
time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...
- 【47.40%】【codeforces 743B】Chloe and the sequence
time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...
- 【24.34%】【codeforces 560D】Equivalent Strings
time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...
随机推荐
- elment表格分页
项目的时候遇到了一个分页的bug,经过分析Element源码之后找到了问题所在,现在把这个问题及解决方法记录下来. 项目中要实现的功能是用户选择查看表格的时候在任意页面点击查询,得到结果之后要展示的页 ...
- multiple definition of
总结了解决multiple definition of的方法: 问题原因: 当多个文件包含同一个头文件时,并且你的.H里面没有加上条件编译#ifndef TEST_H#define TEST_H ...
- python_形参、实参
#参数:形参.实参'''def display_message(title): print("My favourite book is %s" %title) #return 0 ...
- [TS] Class Properties Public, Private and Read Only Modifiers
In the constructor, we want to set the prop to readonly, you need to do like this: class Superhero { ...
- Linux以下的两种文件锁
文件锁是一种文件读写机制.在不论什么特定的时间仅仅同意一个进程訪问一个文件. 利用这样的机制可以使读写单个文件的过程变得更安全. 在这篇文章中.我们将探讨Linux中不同类型的文件锁,并通过演示样例程 ...
- 手写一个节点大小平衡树(SBT)模板,留着用
看了一下午,感觉有了些了解.应该没有错,有错希望斧正,感谢 #include<stdio.h> #include<string.h> struct s { int key,le ...
- [jQuery] 选择器和事件
jQuery选择器 属性选择器 <p>p1</p> <span style="font-size:24px;"></span>< ...
- php中echo什么时候用到\"这个符号
php中echo什么时候用到\"这个符号 当在引号中用到引号时,为避免混乱用\" \称为转义符,表示后面的字符和原来程序语言里的语法符号含义不同 常见的转义有 \" \' ...
- CentOS 6.5 下编译安装 Nginx 1.8.0
转自:https://i.cnblogs.com/EditPosts.aspx?postid=8303227&update=1 安装编译依赖的包 yum -y install gcc gcc- ...
- Codeforces 959E. Mahmoud and Ehab and the xor-MST 思路:找规律题,时间复杂度O(log(n))
题目: 解题思路 这题就是0,1,2...n-1总共n个数字形成的最小生成树. 我们可以发现,一个数字k与比它小的数字形成的异或值,一定可以取到k与所有正整数形成的异或值的最小值. 要计算n个数字的情 ...