zoukankan      html  css  js  c++  java
  • UVALive 7139 Rotation(矩阵前缀和)(2014 Asia Shanghai Regional Contest)

    题目链接:https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&category=648&page=show_problem&problem=5151
    You have a rectangle of size N × M, N rows from top to bottom and M columns from left to right,
    that is divided into a grid of unit squares. The corners and sides of those squares will be called grid
    points and grid lines, respectively.
    You are given a path along some grid lines. The path satisfies the following properties:
    • Both start and end of the path are at the top left grid point.
    • Each step is to go along the grid line (i.e., move up, down, left, or right).
    You need to calculate the square sum of all the rotation values in each all. The definition of the
    notation value in each cell is below.
    Suppose there is a moving car at the path and a person stands at the center of the cell. The person
    is facing the car all the time. After the path is finished, the rotation value of the grid equals to the
    net number of clockwise turns the person would make if he stood in that square. (In other words, if
    the person standing in that square rotate by the same total amount clockwise and counterclockwise,
    the rotation value is 0. If the person’s total clockwise rotation is 360x degrees more than the person’s
    total counterclockwise rotation, the rotation value of the cell is x. If the person’s total couuterclockwise
    rotation is 360x degrees more than the person’s total clockwise rotation, the rotation value of the cell
    is −x)
    Input
    The first line of the input gives the number of test cases, T. T cases follow. For each test case, the first
    line contains three numbers, N, M and K. The next K line describes the steps of the path. Each line
    containing ‘d s’, where d is one of the four characters (‘U’ for up, ‘D’ for down, ‘L’ for left, ‘R’ for right)
    means the direction of the step and s is the length of the step.
    It is guaranteed that the path is inside the grid.
    Output
    For each test case, output one line containing ‘Case #x: y’, where x is the test case number (starting
    from 1) and y is square sum of all the rotation values of each cell.

    题目大意:给一个n*m的矩阵,每个方块上有一个人。现在有一辆车在左上角的格点处,矩阵里的人都会一直面向那辆车。现在给出车的移动路线,问每个人总旋转角度的平方和是多少。若一个人顺时针旋转10个圈,逆时针旋转15个圈,最终算旋转角度为5个圈。
    思路:根据题意,车一定会回到原点,那么每个人的初始面向方向与最终面向方向相同,每个人旋转的圈数都必将是整数。
    若车在人的正左方下降了X次,上升了Y次,那么那个人的旋转圈数便是abs(X-Y)。(不要问我为什么,多想想多想想)

    然后暴力模拟车的移动:

    在车向下移动的时候,我们就要给车影响右方的一个矩阵加上1。
    在车向上移动的时候,我们就要给车影响右方的一个矩阵减去1。
    为了给一个矩阵加上一个值,因为本题只需要最终结果,可以使用静态的矩阵前缀和的方式处理。
    最后求出矩阵,直接累加结果即可。

    代码(0.249S):

     1 #ifdef OYK_JUDGE
     2 #define longformat "%I64d"
     3 #else
     4 #define longformat "%lld"
     5 #endif // OYK_JUDGE
     6 
     7 #include <iostream>
     8 #include <cstdio>
     9 #include <algorithm>
    10 #include <cstring>
    11 #include <vector>
    12 using namespace std;
    13 typedef long long LL;
    14 
    15 vector<vector<int> > mat;
    16 int T, n, m, k;
    17 
    18 char str[] = "RDLU";
    19 int fr[] = {0, 1, 0, -1};
    20 int fc[] = {1, 0, -1, 0};
    21 
    22 void modify(int c, int r1, int r2, int val) {
    23     mat[r1][c] += val;
    24     mat[r2][c] -= val;
    25 }
    26 
    27 LL solve() {
    28     int step, r = 1, c = 1;
    29     char op;
    30     while(k--) {
    31         scanf(" %c%d", &op, &step);
    32         if(op == 'D') modify(c, r, r + step, 1);
    33         if(op == 'U') modify(c, r - step, r, -1);
    34 
    35         int f = strchr(str, op) - str;
    36         r += step * fr[f];
    37         c += step * fc[f];
    38     }
    39 
    40     LL res = 0;
    41     for(int i = 1; i <= n; ++i)
    42         for(int j = 1; j <= m; ++j) {
    43             mat[i][j] = mat[i][j] + mat[i - 1][j] + mat[i][j - 1] - mat[i - 1][j - 1];
    44             res += mat[i][j] * mat[i][j];
    45         }
    46     return res;
    47 }
    48 
    49 int main() {
    50     scanf("%d", &T);
    51     for(int t = 1; t <= T; ++t) {
    52         scanf("%d%d%d", &n, &m, &k);
    53         mat = vector<vector<int> >(n + 2, vector<int>(m + 2, 0));
    54         LL res = solve();
    55         printf("Case #%d: " longformat "
    ", t, res);
    56     }
    57 }
    View Code
  • 相关阅读:
    mysql 往表中insert的时候如何让主键id按当前表的最大值自动增长?
    visual studio 2013 win7安装笔记
    mysql奇葩之旅
    java JVM常见的四大异常及处理方案
    DDR3_旧版(2):初始化
    DDR3_旧版(1):IP核调取
    【转】AXI_Lite 总线详解
    ZYNQ笔记(7):AXI从口自定义IP封装
    ZYNQ笔记(6):普通自定义IP封装实现PL精准定时中断
    ZYNQ笔记(5):软中断实现核间通信
  • 原文地址:https://www.cnblogs.com/oyking/p/4503098.html
Copyright © 2011-2022 走看看