码迷,mamicode.com
首页 > 其他好文 > 详细

XDOJ_1129_水

时间:2016-11-06 07:39:25      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:php   cst   color   stream   problem   algo   print   algorithm   div   

http://acm.xidian.edu.cn/problem.php?id=1129

 

保存累计的下标,直接输出。

 

#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
using namespace std;

int a[1005][1005],x[1005],y[1005],n,m,k;

int main()
{
    while(~scanf("%d%d%d",&n,&m,&k))
    {
        for(int i = 1;i <= n;i++)   x[i] = i;
        for(int i = 1;i <= m;i++)   y[i] = i;
        for(int i = 1;i <= n;i++)
        {
            for(int j = 1;j <= m;j++)   scanf("%d",&a[i][j]);
        }
        int o,xx,yy;
        while(k--)
        {
            scanf("%d%d%d",&o,&xx,&yy);
            if(o == 0)  swap(x[xx],x[yy]);
            else    swap(y[xx],y[yy]);
        }
        for(int i = 1;i <= n;i++)
        {
            printf("%d",a[x[i]][y[1]]);
            for(int j = 2;j <= m;j++)   printf(" %d",a[x[i]][y[j]]);
            printf("\n");
        }
    }
    return 0;
}

 

XDOJ_1129_水

标签:php   cst   color   stream   problem   algo   print   algorithm   div   

原文地址:http://www.cnblogs.com/zhurb/p/6034613.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!