Codeforces #664 (Div. 2) B. Boboniu Plays Chess(构造)

B. Boboniu Plays Chess(构造)

time limit per test:1 second
memory limit per test:512 megabytes
input:standard input
output:standard output

Boboniu likes playing chess with his employees. As we know, no employee can beat the boss in the chess game, so Boboniu has never lost in any round.

You are a new applicant for his company. Boboniu will test you with the following chess question:

Consider a n × m n×m grid (rows are numbered from 1 1 to n n , and columns are numbered from 1 1 to m m ). You have a chess piece, and it stands at some cell ( S x , S y ) (Sx,Sy) which is not on the border (i.e. 2 S x n 1 2≤Sx≤n−1 and 2 S y m 1 2≤Sy≤m−1 ).

From the cell ( x , y ) (x,y) , you can move your chess piece to ( x , y ) (x,y′) ( 1 y m , y y ) (1≤y′≤m,y′≠y) or ( x , y ) ( 1 x n , x x ) (x′,y) (1≤x′≤n,x′≠x) . In other words, the chess piece moves as a rook. From the cell, you can move to any cell on the same row or column.

Your goal is to visit each cell exactly once. Can you find a solution?

Note that cells on the path between two adjacent cells in your route are not counted as visited, and it is not required to return to the starting point.

Input
The only line of the input contains four integers n , m , S x n, m, Sx and S y Sy ( 3 n , m 100 , 2 S x n 1 , 2 S y m 1 ) (3≤n,m≤100, 2≤Sx≤n−1, 2≤Sy≤m−1) — the number of rows, the number of columns, and the initial position of your chess piece, respectively.

Output
You should print n m n⋅m lines.

The i-th line should contain two integers x i x_i and y i y_i ( 1 x i n , 1 y i m ) (1≤x_i≤n, 1≤y_i≤m) , denoting the i-th cell that you visited. You should print exactly nm pairs ( x i , y i ) (x_i,y_i) , they should cover all possible pairs ( x i , y i ) (xi,yi) , such that 1 x i n , 1 y i m 1≤x_i≤n, 1≤y_i≤m .

We can show that under these constraints there always exists a solution. If there are multiple answers, print any.
Examples
input

3 3 2 2

output

2 2
1 2
1 3
2 3
3 3
3 2
3 1
2 1
1 1

input

3 4 2 2

output

2 2
2 1
2 3
2 4
1 4
3 4
3 3
3 2
3 1
1 1
1 2
1 3

Note
Possible routes for two examples:
在这里插入图片描述

#include<iostream>
#include<cstdio>
#include<string>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<vector>
using namespace std;
#define IOS ios::sync_with_stdio(false); cin.tie(0); cout.tie(0)
int visit[105][105];
int main()
{
    IOS;
    int n, m;
    int sx, sy;
    cin >> n >> m >> sx >> sy;

    visit[sx][sy] = 1;//初始点设为1

    printf("%d %d\n",sx,sy);
    printf("1 %d\n",sy);

    visit[1][sy] = 1;
    for (int i = 1; i <= n; i++)
    {
        if (i % 2 != 1)
        {
            for (int j = m; j >= 1; j--)
            {
                if (visit[i][j] == 1)
                    continue;
                printf("%d %d\n", i, j);
                visit[i][j] = 1;
            }
        }
        else
        {
            for (int j = 1; j <= m; j++)
            {
                if (visit[i][j] == 1)
                    continue;
                printf("%d %d\n", i, j);
                visit[i][j] = 1;
            }
        }
    }
    return 0;
} 	

我的输出顺序跟题目给的例子不一样。
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/m0_46272108/article/details/107995499