zoukankan      html  css  js  c++  java
  • codeforces #364b Cells Not Under Attack

    比赛的时候 long long sum=n*n,计算不出1e10长度到数,没有搞掉。
    哎,以后要注意这个地方。这个题其实不难:
    统计能被攻击到的个数,然后用总的个数减掉就可以了。注意有些地方重复计算,要给去掉。
     
     
    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 are not 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 


    #include<iostream>
    #include<stdio.h>
    using namespace std;
    int main(){
        int n,m;
        scanf("%d%d",&n,&m);
        long long sum=n;
        sum*=sum;
        int hang=0;
        int lie=0;
        int phang[100005];
        int plie[100005];
        for(int i=0;i<=n+5;i++){
            phang[i]=plie[i]=0;
        }
        long long goji=0;
        for(int i=1;i<m;i++)
        {
            int tmp1,tmp2;
            scanf("%d%d",&tmp1,&tmp2);
            if(phang[tmp1]==0&&plie[tmp2]==0){
                goji+=(n+n-1);
                goji-=lie;
                goji-=hang;
            }else if(phang[tmp1]!=0&&plie[tmp2]==0){
                goji+=(n-1);
                goji-=(hang-1);
            }else if(phang[tmp1]==0&&plie[tmp2]!=0){
                goji+=(n-1);
                goji-=(lie-1);
            }
            if(phang[tmp1]==0){
                hang++;
            }
            if(plie[tmp2]==0){
                lie++;
            }
            phang[tmp1]++;
            plie[tmp2]++;
            printf("%I64d ",sum-goji);
               
        }
    
        int tmp1,tmp2;
            scanf("%d%d",&tmp1,&tmp2);
            if(phang[tmp1]==0&&plie[tmp2]==0){
                goji+=((n*2)-1);
                goji-=lie;
                goji-=hang;
            }else if(phang[tmp1]!=0&&plie[tmp2]==0){
                goji+=(n-1);
                goji-=(hang-1);
            }else if(phang[tmp1]==0&&plie[tmp2]!=0){
                goji+=(n-1);
                goji-=(lie-1);
            }
            if(phang[tmp1]==0){
                hang++;
            }
            if(plie[tmp2]==0){
                lie++;
            }
            phang[tmp1]++;
            plie[tmp2]++;
            printf("%I64d
    ",sum-goji);
    
            return 0;
    }
    View Code
  • 相关阅读:
    Flutter实战视频-移动电商-11.首页_屏幕适配方案讲解
    Flutter实战视频-移动电商-10.首页_FlutterSwiper轮播效果制作
    Flutter实战视频-移动电商-09.首页_项目结构建立和获取数据
    Flutter实战视频-移动电商-08.Dio基础_伪造请求头获取数据
    【RQNOJ】460 诺诺的队列
    NYOJ 483 Nightmare 【广搜】+【无标记】
    冒泡,简单选择,直接插入排序(Java版)
    基于MFC与第三方类CWebPage的百度地图API开发范例
    USACO 1.2 Palindromic Squares (进制转换,回文)
    与《新走遍美国》的邂逅
  • 原文地址:https://www.cnblogs.com/superxuezhazha/p/5698088.html
Copyright © 2011-2022 走看看