solution.cpp 1.4 KB
Newer Older
每日一练社区's avatar
每日一练社区 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
#include <iostream>
#include <cstdio>
using namespace std;
int a[105][105]; //定义一个二维数组存储格子颜色

int main()
{
    int m, n;
    int x, y, k;
    char s;
    cin >> m >> n;
    for (int i = 0; i < m; i++)
    {
        for (int j = 0; j < n; j++)
        {
            cin >> a[i][j];
        }
    }
    scanf("%d %d %c %d", &x, &y, &s, &k);
    while (k--)
    {
        if (a[x][y] == 1) //蚂蚁在黑格
        {
            a[x][y] = 0;
            if (s == 'U')
            {
                y++;
                s = 'R';
            }
            else if (s == 'D')
            {
                y--;
                s = 'L';
            }
            else if (s == 'L')
            {
                x--;
                s = 'U';
            }
            else if (s == 'R')
            {
                x++;
                s = 'D';
            }
        }
        else //蚂蚁在白格
        {
            a[x][y] = 1;
            if (s == 'U')
            {
                y--;
                s = 'L';
            }
            else if (s == 'D')
            {
                y++;
                s = 'R';
            }
            else if (s == 'L')
            {
                x++;
                s = 'D';
            }
            else if (s == 'R')
            {
                x--;
                s = 'U';
            }
        }
    }
    printf("%d %d\n", x, y);
    return 0;
}