zoukankan      html  css  js  c++  java
  • Codeforces Round #364 (Div. 2)->B. Cells Not Under Attack

    B. Cells Not Under Attack
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Vasya has the square chessboard of size n × n and m rooks. Initially the chessboard is empty. Vasya will consequently put the rooks on the board one after another.

    The cell of the field is under rook's attack, if there is at least one rook located in the same row or in the same column with this cell. If there is a rook located in the cell, this cell is also under attack.

    You are given the positions of the board where Vasya will put rooks. For each rook you have to determine the number of cells which arenot under attack after Vasya puts it on the board.

    Input

    The first line of the input contains two integers n and m (1 ≤ n ≤ 100 000, 1 ≤ m ≤ min(100 000, n2)) — the size of the board and the number of rooks.

    Each of the next m lines contains integers xi and yi (1 ≤ xi, yi ≤ n) — the number of the row and the number of the column where Vasya will put the i-th rook. Vasya puts rooks on the board in the order they appear in the input. It is guaranteed that any cell will contain no more than one rook.

    Output

    Print m integer, the i-th of them should be equal to the number of cells that are not under attack after first i rooks are put.

    Examples
    input
    3 3
    1 1
    3 1
    2 2
    output
    4 2 0 
    input
    5 2
    1 5
    5 1
    output
    16 9 
    input
    100000 1
    300 400
    output
    9999800001 
    Note

    On the picture below show the state of the board after put each of the three rooks. The cells which painted with grey color is not under the attack.

    题意:把棋子依次放在棋盘里,一次放一个,与棋子同一行或者同一列的会被攻击,输出每次放完一个棋子时不被攻击的棋格数。

    思路:看代码吧

     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 #define LL long long
     4 const LL maxn=100000;
     5 int main(){
     6     LL n,m;
     7     cin>>n>>m;
     8     bool row[maxn],col[maxn];
     9     LL r,c,a[maxn];
    10     r=n;
    11     c=n;
    12     for(int i=1;i<=n;i++)
    13     {
    14         row[i]=false;
    15         col[i]=false;
    16     }
    17     for(int i=1;i<=m;i++){
    18         int x,y;
    19         cin>>x>>y;
    20         if(row[x]==false){
    21             row[x]=true;
    22             r--;
    23         }
    24         if(col[y]==false){
    25             col[y]=true;
    26             c--;
    27         }
    28         a[i]=r*c;
    29     }
    30     for(int i=1;i<=m;i++){
    31         cout<<a[i];
    32         if(i!=m)
    33         cout<<" ";
    34     }
    35     cout<<endl;
    36     return 0;
    37 }
  • 相关阅读:
    webServer xampp的安装及使用
    javascript 原生方法监听DOM结构改变事件
    c# 文件简繁体转换
    c# 网络是否连接
    JMS
    JMS
    JMS
    Quartz Scheduler(2.2.1)
    MySQL
    Git CMD
  • 原文地址:https://www.cnblogs.com/zhien-aa/p/5801058.html
Copyright © 2011-2022 走看看