• B. Boboniu Plays Chess


    Problem - 1395B - Codeforces

    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×mn×m grid (rows are numbered from 11 to nn, and columns are numbered from 11 to mm). You have a chess piece, and it stands at some cell (Sx,Sy)(Sx,Sy) which is not on the border (i.e. 2≤Sx≤n−12≤Sx≤n−1 and 2≤Sy≤m−12≤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′≠y1≤y′≤m,y′≠y) or (x′,y)(x′,y) (1≤x′≤n,x′≠x1≤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 nn, mm, SxSx and SySy (3≤n,m≤1003≤n,m≤100, 2≤Sx≤n−12≤Sx≤n−1, 2≤Sy≤m−12≤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⋅mn⋅m lines.

    The ii-th line should contain two integers xixi and yiyi (1≤xi≤n1≤xi≤n, 1≤yi≤m1≤yi≤m), denoting the ii-th cell that you visited. You should print exactly nmnm pairs (xi,yi)(xi,yi), they should cover all possible pairs (xi,yi)(xi,yi), such that 1≤xi≤n1≤xi≤n, 1≤yi≤m1≤yi≤m.

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

    Examples

    input

    Copy

    3 3 2 2
    

    output

    Copy

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

    input

    Copy

    3 4 2 2
    

    output

    Copy

    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

    题意:从sx,sy点出顺着(x′,y)或者(x,y′)遍历打印所有路径

    Possible routes for two examples:

    1. #include
    2. #include
    3. #include
    4. #include
    5. #include
    6. #include
    7. #include
    8. #include
    9. #include
    10. #include
    11. using namespace std;
    12. // ctrl+shift+C 注释
    13. //ctrl+shift+x 取消
    14. #define int long long
    15. #define YES cout<<"YES"<
    16. #define NO cout<<"NO"<
    17. #define fast ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
    18. typedef long long ll;
    19. typedef pair<int,int> PII;
    20. const int N=2e5+10;
    21. const ll M=1e18+10;
    22. const int mod=1e9+7;
    23. int a[N],sum[N];
    24. priority_queue<int,vector<int>,greater<int> >pq;
    25. set<int>se;
    26. map<int,int>mp;
    27. queue<int>qu;
    28. vector<int>v;
    29. deque<int>de;
    30. int n,m,sx,sy;
    31. void solve()
    32. {
    33. cin>>n>>m>>sx>>sy;
    34. int x=sx,y=sy,id=sy;
    35. for(int i=1;i<=n*m;i++)
    36. {
    37. while(x>=1)
    38. {
    39. for(int i=y;i<=m;i++)
    40. {
    41. cout<" "<
    42. id=i;
    43. }
    44. for(int i=y-1;i>=1;i--)
    45. {
    46. cout<" "<
    47. id=i;
    48. }
    49. y=id;
    50. x--;
    51. }
    52. sy=id;
    53. while(sx
    54. {
    55. sx++;
    56. for(int i=sy;i<=m;i++)
    57. {
    58. cout<" "<
    59. id=i;
    60. }
    61. for(int i=sy-1;i>=1;i--)
    62. {
    63. cout<" "<
    64. id=i;
    65. }
    66. sy=id;
    67. }
    68. }
    69. }
    70. signed main()
    71. {
    72. int t=1;
    73. //cin>>t;
    74. while(t--)
    75. {
    76. solve();
    77. }
    78. }

  • 相关阅读:
    孙宇晨出席米尔肯研究院亚洲峰会:持续推动行业破圈 亚洲将成重要加密中心
    Pytest简介及jenkins集成
    美摄科技对抗网络数字人解决方案
    【Linux】分布式版本控制工具git
    WinForm实现多人聊天工具完整源码
    基于Python分析实现酒店评论的中文情感
    Limitの线段树题单 题解目录
    强固型国产化工业电脑,在电子看板行业应用,机器视觉在汽车产线行业应用
    java计算机毕业设计springboot+vue村委会管理系统
    C语言题解 | 去重数组&&合并数组
  • 原文地址:https://blog.csdn.net/qq_62079079/article/details/127567745