zoukankan      html  css  js  c++  java
  • 18.10.8 POJ 1195 Mobile phones

    描述

    Suppose that the fourth generation mobile phone base stations in the Tampere area operate as follows. The area is divided into squares. The squares form an S * S matrix with the rows and columns numbered from 0 to S-1. Each square contains a base station. The number of active mobile phones inside a square can change because a phone is moved from a square to another or a phone is switched on or off. At times, each base station reports the change in the number of active phones to the main base station along with the row and the column of the matrix.

    Write a program, which receives these reports and answers queries about the current total number of active mobile phones in any rectangle-shaped area.输入The input is read from standard input as integers and the answers to the queries are written to standard output as integers. The input is encoded as follows. Each input comes on a separate line, and consists of one instruction integer and a number of parameter integers according to the following table.


    The values will always be in range, so there is no need to check them. In particular, if A is negative, it can be assumed that it will not reduce the square value below zero. The indexing starts at 0, e.g. for a table of size 4 * 4, we have 0 <= X <= 3 and 0 <= Y <= 3.

    Table size: 1 * 1 <= S * S <= 1024 * 1024
    Cell value V at any time: 0 <= V <= 32767
    Update amount: -32768 <= A <= 32767
    No of instructions in input: 3 <= U <= 60002
    Maximum number of phones in the whole table: M= 2^30输出Your program should not answer anything to lines with an instruction other than 2. If the instruction is 2, then your program is expected to answer the query by writing the answer as a single line containing a single integer to standard output.样例输入

    0 4
    1 1 2 3
    2 0 0 2 2 
    1 1 1 2
    1 1 2 -1
    2 1 1 2 3 
    3
    

    样例输出

    3
    4

    来源

    IOI 2001

     1 #include <iostream>
     2 #include <string.h>
     3 #include <algorithm>
     4 #include <stack>
     5 #include <string>
     6 #include <math.h>
     7 #include <queue>
     8 #include <stdio.h>
     9 #include <string.h>
    10 
    11 using namespace std;
    12 
    13 int c[1050][1050];
    14 int s,n;
    15 
    16 int lowbit(int x) {
    17     return x & (-x);
    18 }
    19 
    20 int getsum(int x, int y) {
    21     int sum0 = 0;
    22     for (int i = x; i > 0; i -= lowbit(i))
    23         for (int j = y; j > 0; j -= lowbit(j))
    24             sum0 += c[i][j];
    25     return sum0;
    26 }
    27 
    28 int getres(int l, int r, int b, int t) {
    29     return getsum(r, t) - getsum(r, b - 1) - getsum(l - 1, t) + getsum(l - 1, b - 1);
    30 }
    31 
    32 void change(int x,int y,int a) {
    33     for(int i=x;i<=s;i+=lowbit(i))
    34         for (int j = y; j <= s; j += lowbit(j)) {
    35             c[i][j] += a;
    36         }
    37 }
    38 
    39 void init() {
    40     memset(c, 0, sizeof(c));
    41     scanf("%d%d",&n, &s);
    42     while (1) {
    43         scanf("%d", &n);
    44         if (n == 3)return;
    45         if (n == 1) {
    46             int x, y, a;
    47             scanf("%d%d%d", &x, &y, &a);
    48             change(x+1, y+1, a);
    49         }
    50         else if (n == 2) {
    51             int l, b, r, t;
    52             scanf("%d%d%d%d", &l, &b, &r, &t);
    53             printf("%d
    ", getres(l+1, r+1, b+1, t+1));
    54         }
    55     }
    56 }
    57 
    58 
    59 int main()
    60 {
    61     init();
    62     return 0;
    63 }
    View Code

    二维树状数组

    注定失败的战争,也要拼尽全力去打赢它; 就算输,也要输得足够漂亮。
  • 相关阅读:
    常见分布式锁的基本实现
    Xen安装部署和基本原理
    Android应用在不同版本间兼容性处理
    Android 在fragment中实现返回键单击提醒 双击退出
    Android使用的webcview中带有音乐播放控件,在关闭或分享时处于界面不可见状态下,声音仍在播放的问题解决
    Android 使用WebView浏览有声音或者视频的网页,关闭WebView之后,声音或者视频不停止的解决办法
    Android 自带Base64加密解密
    Android java.lang.RuntimeException: Canvas: trying to use a recycled bitmap android.graphics.Bitmap@412d7230
    Android 微信SDK图片分享(checkArgs fail, thumbData is invalid)
    Android之Glide获取图片Path和Glide获取图片Bitmap
  • 原文地址:https://www.cnblogs.com/yalphait/p/9756012.html
Copyright © 2011-2022 走看看