HDU 4819 二维线段树

来源:互联网 发布:中日贸易数据 编辑:程序博客网 时间:2024/05/19 09:18

Mosaic

Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 102400/102400 K (Java/Others)
Total Submission(s): 1179    Accepted Submission(s): 509


Problem Description
The God of sheep decides to pixelate some pictures (i.e., change them into pictures with mosaic). Here's how he is gonna make it: for each picture, he divides the picture into n x n cells, where each cell is assigned a color value. Then he chooses a cell, and checks the color values in the L x L region whose center is at this specific cell. Assuming the maximum and minimum color values in the region is A and B respectively, he will replace the color value in the chosen cell with floor((A + B) / 2).

Can you help the God of sheep?
 

Input
The first line contains an integer T (T ≤ 5) indicating the number of test cases. Then T test cases follow.

Each test case begins with an integer n (5 < n < 800). Then the following n rows describe the picture to pixelate, where each row has n integers representing the original color values. The j-th integer in the i-th row is the color value of cell (i, j) of the picture. Color values are nonnegative integers and will not exceed 1,000,000,000 (10^9).

After the description of the picture, there is an integer Q (Q ≤ 100000 (10^5)), indicating the number of mosaics.

Then Q actions follow: the i-th row gives the i-th replacement made by the God of sheep: xi, yi, Li (1 ≤ xi, yi ≤ n, 1 ≤ Li < 10000, Li is odd). This means the God of sheep will change the color value in (xi, yi) (located at row xi and column yi) according to the Li x Li region as described above. For example, an query (2, 3, 3) means changing the color value of the cell at the second row and the third column according to region (1, 2) (1, 3), (1, 4), (2, 2), (2, 3), (2, 4), (3, 2), (3, 3), (3, 4). Notice that if the region is not entirely inside the picture, only cells that are both in the region and the picture are considered.

Note that the God of sheep will do the replacement one by one in the order given in the input.
 

Output
For each test case, print a line "Case #t:"(without quotes, t means the index of the test case) at the beginning.

For each action, print the new color value of the updated cell.
 

Sample Input
131 2 34 5 67 8 952 2 13 2 31 1 31 2 32 2 3
 

Sample Output
Case #1:56346
 

Source
2013 Asia Regional Changchun
 

Recommend
liuyiding

#include <cstdio>#include <cstring>#include <iostream>#include <algorithm>using namespace std;#define INF 0x3f3f3f3f#define N 800 + 10int n;struct Nodey{    int l, r, Max, Min;};int locy[N], locx[N];struct Nodex{    int l, r;    Nodey sty[N<<2];    void build(int i, int _l, int _r)    {        sty[i].l = _l;        sty[i].r = _r;        sty[i].Max = -INF;        sty[i].Min = INF;        if(_l == _r)        {            locy[_l] = i;            return;        }        int mid = (_l + _r) >> 1;        build((i<<1), _l, mid);        build((i<<1)|1, mid + 1, _r);    }    int queryMin(int i, int _l, int _r)    {        if(sty[i].l == _l && sty[i].r == _r) return sty[i].Min;        int mid = (sty[i].l + sty[i].r) >> 1;        if(_r <= mid) return queryMin((i<<1), _l, _r);        else if(_l > mid) return queryMin((i<<1)|1, _l, _r);        else return min(queryMin((i<<1), _l, mid), queryMin((i<<1)|1, mid + 1, _r));    }    int queryMax(int i, int _l, int _r)    {        if(sty[i].l == _l && sty[i].r == _r) return sty[i].Max;        int mid = (sty[i].l + sty[i].r) >> 1;        if(_r <= mid) return queryMax((i<<1), _l, _r);        else if(_l > mid) return queryMax((i<<1)|1, _l, _r);        else return max(queryMax((i<<1), _l, mid), queryMax((i<<1)|1, mid + 1, _r));    }} stx[N<<2];void build(int i, int l, int r){    stx[i].l = l;    stx[i].r = r;    stx[i].build(1, 1, n);    if(l == r)    {        locx[l] = i;        return ;    }    int mid = (l + r) >> 1;    build((i<<1), l, mid);    build((i<<1)|1, mid + 1, r);}void modify(int x, int y, int val){    int tx = locx[x], ty = locy[y];    stx[tx].sty[ty].Min = stx[tx].sty[ty].Max = val;    for(int i = tx; i; i >>= 1)        for(int j = ty; j; j >>= 1)        {            if(i == tx && j == ty) continue;            if(j == ty)            {                stx[i].sty[j].Min = min(stx[(i<<1)].sty[j].Min, stx[(i<<1)|1].sty[j].Min);                stx[i].sty[j].Max = max(stx[(i<<1)].sty[j].Max, stx[(i<<1)|1].sty[j].Max);            }            else            {                stx[i].sty[j].Min = min(stx[i].sty[(j<<1)].Min, stx[i].sty[(j<<1)|1].Min);                stx[i].sty[j].Max = max(stx[i].sty[(j<<1)].Max, stx[i].sty[(j<<1)|1].Max);            }        }}int queryMin(int i,int x1, int x2, int y1, int y2){    if(stx[i].l == x1 && stx[i].r == x2)        return stx[i].queryMin(1, y1, y2);    int mid = (stx[i].l + stx[i].r) >> 1;    if(x2 <= mid) return queryMin((i<<1), x1, x2, y1, y2);    else if(x1 > mid) return queryMin((i<<1)|1, x1, x2, y1, y2);    else  return min(queryMin((i<<1), x1, mid, y1, y2), queryMin((i<<1)|1, mid + 1, x2, y1, y2));}int queryMax(int i, int x1, int x2, int y1,int y2){    if(stx[i].l == x1 && stx[i].r == x2)        return stx[i].queryMax(1, y1, y2);    int mid = (stx[i].l + stx[i].r) >> 1;    if(x2 <= mid) return queryMax((i<<1), x1, x2, y1, y2);    else if(x1 > mid) return queryMax((i<<1)|1, x1, x2, y1, y2);    else  return max(queryMax((i<<1), x1, mid, y1, y2), queryMax((i<<1)|1, mid + 1, x2, y1, y2));}int main(){    int _T, kase = 0;    scanf("%d", &_T);    while(_T--)    {        printf("Case #%d:\n", ++kase);        int v;        scanf("%d", &n);        build(1, 1, n);        for(int i = 1; i <= n; i++)            for(int j = 1; j <= n; j++)            {                scanf("%d", &v);                modify(i, j, v);            }        int q, x, y, L;        scanf("%d", &q);        while(q--)        {            scanf("%d%d%d", &x, &y, &L);            int tmp = L >> 1;            int x1 = max(1, x - tmp), x2 = min(n, x + tmp);            int y1 = max(1, y - tmp), y2 = min(n, y + tmp);            int t1 = queryMin(1, x1, x2, y1, y2);            int t2 = queryMax(1, x1, x2, y1, y2);            int t = (t1 + t2) >> 1;            printf("%d\n", t);            modify(x, y, t);        }    }    return 0;}/*231 2 34 5 67 8 952 2 13 2 31 1 31 2 32 2 351 2 3 4 55 4 3 2 11 2 3 4 56 7 8 9 109 8 7 6 552 3 31 3 32 5 33 4 52 4 1*/


0 0
原创粉丝点击