标签:des style blog http color java os io
Time Limit: 24000/12000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others)
Total Submission(s): 724 Accepted Submission(s): 343
Mean:
有一片N*M的森林,里面种着一些果实,现在有三种操作:1.交换第i行和第j行的果实;2.交换第i列和第j列的果实;3.查询第i行第j列有多少果实。
analyse:
由于地图的范围达到了2*1e9,我们不可能用二维数组,必须离散化。
我们用三个map函数,一个存行坐标,一个存列坐标,另一个存果实的数目。在变换的时候,只需交换行坐标的map或者列坐标的map,存果实的map函数是一直不变的,这样就大大减少了时间的消耗。
Time complexity:O(k)
Source code:
//Memory Time
// 1347K 0MS
// by : Snarl_jsb
#include<algorithm>
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<iostream>
#include<vector>
#include<queue>
#include<stack>
#include<map>
#include<string>
#include<climits>
#include<cmath>
#define MAX 1100
#define LL long long
using namespace std;
map<int,int>row;
map<int,int>col;
map<int,map<int,int> >val;
int main()
{
#ifndef ONLINE_JUDGE
freopen("cin.txt","r",stdin);
#endif
int T,kase=1;
cin>>T;
while(T--)
{
row.clear();
col.clear();
val.clear();
int x,y,k,c;
int rrow=1,ccol=1;
scanf("%d %d %d",&x,&y,&k);
while(k--)
{
scanf("%d %d %d",&x,&y,&c);
if(!row[x])
row[x]=rrow++;
if(!col[y])
col[y]=ccol++;
x=row[x],y=col[y];
val[x][y]=c;
}
printf("Case #%d:\n",kase++);
int Q,tmp;
cin>>Q;
while(Q--)
{
scanf("%d %d %d",&c,&x,&y);
if(c==1)
{
tmp=row[x];
row[x]=row[y];
row[y]=tmp;
}
else if(c==2)
{
tmp=col[x];
col[x]=col[y];
col[y]=tmp;
}
else
printf("%d\n",val[row[x]][col[y]]);
}
}
return 0;
}
STL : map函数的运用 --- hdu 4941 : Magical Forest,布布扣,bubuko.com
STL : map函数的运用 --- hdu 4941 : Magical Forest
标签:des style blog http color java os io
原文地址:http://www.cnblogs.com/acmer-jsb/p/3911906.html