首页 > 代码库 > hdu 4941 Magical Forest(Map)
hdu 4941 Magical Forest(Map)
http://acm.hdu.edu.cn/showproblem.php?pid=4941
因为地图的行和列很大,操作次数也很多,直接循环模拟肯定不行。但可以用map映射一下,当交换行和列的时候,直接交换它们的映射值,直接O(1)进行交换。
#include <stdio.h> #include <iostream> #include <map> #include <set> #include <list> #include <stack> #include <vector> #include <math.h> #include <string.h> #include <queue> #include <string> #include <stdlib.h> #include <algorithm> #define LL long long #define _LL __int64 #define eps 1e-12 #define PI acos(-1.0) using namespace std; const int maxn = 100010; int n,m,k,T; map <LL, int>m1,m2; map <pair<int,int>,int>m3; int main() { int test; int u,v,w; int t1,t2; scanf("%d",&test); for(int item = 1; item <= test; item++) { m1.clear(); m2.clear(); m3.clear(); scanf("%d %d %d",&n,&m,&k); t1 = 0; t2 = 0; while(k--) { scanf("%d %d %d",&u,&v,&w); if(m1.find(u) == m1.end()) m1[u] = ++t1; if(m2.find(v) == m2.end()) m2[v] = ++t2; m3[ make_pair(m1[u],m2[v]) ] = w; } scanf("%d",&T); printf("Case #%d:\n",item); int q,uu,vv; while(T--) { scanf("%d %d %d",&q,&u,&v); if(q == 1) { uu = m1[u]; vv = m1[v]; m1[u] = vv; m1[v] = uu; } else if(q == 2) { uu = m2[u]; vv = m2[v]; m2[u] = vv; m2[v] = uu; } else { if(m1.find(u) == m1.end() || m2.find(v) == m2.end()) { printf("0\n"); continue; } uu = m1[u]; vv = m2[v]; printf("%d\n",m3[ make_pair(uu,vv) ]); } } } return 0; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。