日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

【CodeForces - 266C】Below the Diagonal (递归,子问题,贪心模拟)

發布時間:2023/12/10 编程问答 35 豆豆
生活随笔 收集整理的這篇文章主要介紹了 【CodeForces - 266C】Below the Diagonal (递归,子问题,贪心模拟) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

題干:

You are given a square matrix consisting of?n?rows and?n?columns. We assume that the rows are numbered from?1?to?n?from top to bottom and the columns are numbered from?1to?n?from left to right. Some cells (n?-?1?cells in total) of the the matrix are filled with ones, the remaining cells are filled with zeros. We can apply the following operations to the matrix:

  • Swap?i-th and?j-th rows of the matrix;
  • Swap?i-th and?j-th columns of the matrix.
  • You are asked to transform the matrix into a special form using these operations. In that special form all the ones must be in the cells that lie below the main diagonal. Cell of the matrix, which is located on the intersection of the?i-th row and of the?j-th column, lies below the main diagonal if?i?>?j.

    Input

    The first line contains an integer?n?(2?≤?n?≤?1000)?— the number of rows and columns. Then follow?n?-?1?lines that contain one's positions, one per line. Each position is described by two integers?xk,?yk?(1?≤?xk,?yk?≤?n), separated by a space. A pair?(xk,?yk)?means that the cell, which is located on the intersection of the?xk-th row and of the?yk-th column, contains one.

    It is guaranteed that all positions are distinct.

    Output

    Print the description of your actions. These actions should transform the matrix to the described special form.

    In the first line you should print a non-negative integer?m?(m?≤?105)?— the number of actions. In each of the next?m?lines print three space-separated integers?t,?i,?j(1?≤?t?≤?2,?1?≤?i,?j?≤?n,?i?≠?j), where?t?=?1?if you want to swap rows,?t?=?2?if you want to swap columns, and?i?and?j?denote the numbers of rows or columns respectively.

    Please note, that you do not need to minimize the number of operations, but their number should not exceed?105. If there are several solutions, you may print any of them.

    Examples

    Input

    2 1 2

    Output

    2 2 1 2 1 1 2

    Input

    3 3 1 1 3

    Output

    3 2 2 3 1 1 3 1 1 2

    Input

    3 2 1 3 2

    Output

    0

    題目大意:

    給你一個n*n的矩陣并且其中有n-1個位置是1(其他位置是0)

    每次可以交換其中任意兩行或者兩列

    求在10^5個交換內把所有的1都交換到對角線以下(橫坐標大于縱坐標)的方法

    答案可以有很多,寫出任意一個即可。(并且某次交換中 行==列? 是不允許的)

    解題報告:

    ? ?其實這道題想出來就不難了,,,代碼也不算難實現,,坑也不算多。。(問題就是想不到啊還是做題少了)

    ? ?思路就是我們因為有n-1個1,所以肯定存在一列里面全為0,此時把這一列移到最右邊。然后再找一行有1的,把他和最后一行交換。(也可以? 如果最后一行全為0? ,才執行第二個操作)

    此時,我們就可以把問題變成在前(n-1)*(n-1)的矩陣中把最多n-2個點移到左下角的問題

    ? ?有個小細節,因為行列相等不算交換,,所以循環中就不能加for(i=1;i<=n;i++)中的等號了。

    AC代碼:

    #include<cstdio> #include<iostream> #include<algorithm> #include<queue> #include<map> #include<vector> #include<set> #include<string> #include<cmath> #include<cstring> #define ll long long #define pb push_back #define pm make_pair #define fi first #define se second using namespace std; const int MAX = 2e5 + 5; int maze[1005][1005]; int x[MAX],y[MAX]; int tot; struct Node {int t,a,b;Node(){}Node(int t,int a,int b):t(t),a(a),b(b){} } node[MAX]; void dfs(int n) {if(n == 1) return ;for(int j = 1; j<n; j++) {//枚舉每一列 if(y[j] == 0) {for(int i = 1; i<=n; i++) swap(maze[i][j],maze[i][n]);swap(y[j],y[n]);node[++tot] = Node(2,j,n); break;}}for(int i = 1; i<n; i++) {//枚舉每一行 if(x[i] != 0) {for(int j = 1; j<=n; j++) swap(maze[i][j],maze[n][j]);swap(x[i],x[n]);node[++tot] = Node(1,i,n);break;}}for(int j = 1; j<=n-1; j++) {if(maze[n][j] == 1) y[j]--;}dfs(n-1); } int main() {int all;cin>>all;for(int i = 1; i<=all-1; i++) {int a,b;scanf("%d%d",&a,&b);maze[a][b]=1;x[a]++;y[b]++;}dfs(all);printf("%d\n",tot);for(int i = 1; i<=tot; i++) printf("%d %d %d\n",node[i].t,node[i].a,node[i].b);return 0 ;}

    ?

    總結

    以上是生活随笔為你收集整理的【CodeForces - 266C】Below the Diagonal (递归,子问题,贪心模拟)的全部內容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。