zoukankan      html  css  js  c++  java
  • HNUSTOJ-1695 跳格子(略感头疼)

    1695: 跳格子

    时间限制: 1 Sec  内存限制: 128 MB
    提交: 230  解决: 57
    [提交][状态][讨论版]

    题目描述

    逸夫楼的大厅的地面有1010列的石砖,我们用坐标(x,y)来表示石砖的位置。如图示:

    一天lxl在逸夫楼大厅玩跳格子游戏,跳格子游戏有7个动作:1.向左转,2向右转,3向后转,4向左跳一格,5向前跳一格,6向右跳一格,7向后跳一格。游戏前,lxl(1,1)处并面向y轴正方向,他会做n次动作,若某个动作会让lxl跳出逸夫楼大厅则原地不动,每一次动作后都需要你输出lxl当前的位置。当n次动作都做完后,你还需要统计lxl到达过多少个格子。

    输入

    第一行输入n(0<n<101),表示lxl做的动作次数,接下来有n行,每行一个整数x(0<x<8)表示要做的动作。

    输出

    每次动作后输出lxl的当前坐标,一共有n行。随后的第n+1行输出lxl到达过的格子总数。

    样例输入

    7
    5
    4
    1
    7
    3
    2
    6
    

    样例输出

    (1,2)
    (1,2)
    (1,2)
    (2,2)
    (2,2)
    (2,2)
    (1,2)
    3
    #include<iostream>
    #include<cstring>
    #include<cstdio>
     
    using namespace std;
    const int N = 10 + 5;
    const int dir[4][2] = {{-1, 0}, {0, -1}, {1, 0}, {0, 1}};
     
    struct node{
        int x, y, d;
    }mat[N][N], p;
    int a[10];
     
    int dirs_tran(int d, int x){
        if(x == 1) d = (d + 1) % 4; //
        if(x == 2) d = (d + 3) % 4; //
        if(x == 3) d = (d + 2) % 4; //
        return d;
    }
     
    void dirs_work(int x){
       p.d = dirs_tran(p.d, x);
    }
     
    void moves_work(int x, int & cnt){
        int cur;
        if(x == 4) cur = dirs_tran(p.d, 1);
        if(x == 5) cur = p.d;
        if(x == 6) cur = dirs_tran(p.d, 2);
        if(x == 7) cur = dirs_tran(p.d, 3);
        int newx = p.x + dir[cur][0], newy = p.y + dir[cur][1];
        if(newx > 0 && newx <= 10 && newy > 0 && newy <=10){
            p.x = newx, p.y = newy;
            if(!mat[newx][newy].d) { mat[newx][newy].d = 1; cnt++; }
        }
    }
     
    void Solve_question(int n){
        for(int i = 1; i <= 10; i ++)
            for(int j = 1; j <= 10; j++) mat[i][j].d = 0;
     
        int cnt = 1;
        p.x = 10, p.y = 1, p.d = 0;
        mat[10][1].d = 1;
        for(int i = 0; i < n; i++){
            if(a[i] >= 1 && a[i] <= 3) dirs_work(a[i]);
            else moves_work(a[i], cnt);
            printf("(%d,%d)
    ",mat[p.x][p.y].x, mat[p.x][p.y].y);
        }
        printf("%d
    ", cnt);
    }
     
    void Init_mat(){
        for(int i = 1; i <= 10; i++)
            for(int j = 1; j <= 10; j++) mat[i][j] = (node) {j, 11-i};
     
    }
    int main(){
        int n;
        Init_mat();
        scanf("%d", &n);
        for(int i = 0; i < n; i++) scanf("%d", &a[i]);
        Solve_question( n );
     
    }
  • 相关阅读:
    染色体共线性可视化
    Hi-C互作热图作图神器-HiCPlotter
    利用ONT测序检测真核生物全基因组甲基化状态
    scRNAseq benchmark 学习笔记
    友情链接
    关于
    TF目标检测API-Error: Argument must be a dense tensor: range(0, 3)
    python字符串使用
    Ubuntu下几个命令
    转::linux应用之gcc环境的安装
  • 原文地址:https://www.cnblogs.com/Pretty9/p/7406704.html
Copyright © 2011-2022 走看看