zoukankan      html  css  js  c++  java
  • 【习题 6-5 UVA-1600】Patrol Robot

    【链接】 我是链接,点我呀:)
    【题意】

    在这里输入题意

    【题解】

    设dis[x][y][z]表示到(x,y)连续走了z个墙的最短路 bfs一下就ok

    【代码】

    /*
      	1.Shoud it use long long ?
      	2.Have you ever test several sample(at least therr) yourself?
      	3.Can you promise that the solution is right? At least,the main ideal
      	4.use the puts("") or putchar() or printf and such things?
      	5.init the used array or any value?
      	6.use error MAX_VALUE?
      	7.use scanf instead of cin/cout?
    */
    #include <bits/stdc++.h>
    using namespace std;
    
    const int N = 20;
    
    int dx[4] = {0,0,1,-1};
    int dy[4] = {1,-1,0,0};
    
    int k,n,m;
    int a[N+10][N+10],dis[N+10][N+10][N+10];
    queue <pair<int,pair<int,int> > > dl;
    
    int main(){
    	#ifdef LOCAL_DEFINE
    	    freopen("F:\c++source\rush_in.txt", "r", stdin);
    	#endif
    	ios::sync_with_stdio(0),cin.tie(0);
    	int T;
    	cin >> T;
    	while (T--){
    		cin >> n >> m;
    		cin >> k;
    		for (int i = 1;i <= n;i++)
    			for (int j = 1;j <= m;j++)
    				cin >> a[i][j];
    		memset(dis,255,sizeof dis);
    		dis[1][1][0] = 0;
    		dl.push(make_pair(1,make_pair(1,0)));
    		while (!dl.empty()){
    			pair <int,pair<int,int> > temp = dl.front();
    			int x = temp.first,y = temp.second.first,num = temp.second.second;
    			dl.pop();
    			for (int i = 0;i < 4;i++){
    			 	int tx = x+dx[i],ty = y + dy[i];
    			 	if (tx >=1 && tx <= n && ty >=1 && ty <= m){
    			 	 	if (a[tx][ty]){
    			 	 	 	int num1 = num+1;
    			 	 	 	if (num1 <= k){
    			 	 	 	 	if (dis[tx][ty][num1]==-1){
    			 	 	 	 	 	dis[tx][ty][num1] = dis[x][y][num] + 1;
    			 	 	 	 	 	dl.push(make_pair(tx,make_pair(ty,num1)));
    			 	 	 		}
    			 	 	 	}
    			 	 	}else{
    			 	 	 	int num1 = 0;
    			 	 	 	if (dis[tx][ty][num1]==-1){
    						 	dis[tx][ty][num1] = dis[x][y][num] + 1;
    			 	 	 	 	dl.push(make_pair(tx,make_pair(ty,num1)));			 	 	 	 	
    			 	 	 	}
    			 	 	}
    			 	}
    			}
    		}
    		int ans = -1;
    		for (int i = 0;i <= k;i++)
    			if (dis[n][m][i]!=-1){
    				if (ans==-1){
    				 	ans = dis[n][m][i];
    				}else{
    				 	ans = min(ans,dis[n][m][i]);
    				}
    			}
    		cout << ans << endl;
    	}
    	return 0;
    }
    
  • 相关阅读:
    Java线程专题 3:java内存模型
    Java线程专题 2:synchronized理解
    Java线程专题 1:线程创建
    设计模式七大原则
    JVM 运行时数据区
    css_selector定位,比xpath速度快,语法简洁
    xpath绝对定位和相对定位
    selenium多种定位
    操作浏览器基本元素(不定时更新)
    爬取网页图片并且下载(1)
  • 原文地址:https://www.cnblogs.com/AWCXV/p/7875307.html
Copyright © 2011-2022 走看看