0
点赞
收藏
分享

微信扫一扫

POJ 3414 Pots(隐式图的遍历+记录路径)

Star英 2022-08-03 阅读 34


题目地址:http://poj.org/problem?id=3414

思路:和HDU1945相似

AC代码:

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <algorithm>
#include <queue>
#include <stack>
#include <map>
#include <cstring>
#include <climits>
#include <cmath>
#include <cctype>


const int inf = 0x7f7f7f7f;//2139062143
typedef long long ll;
using namespace std;


int a,b,c;
int visit[110][110];


struct node
{
int x;
int y;
int op;
}a[300];


void bfs()
{
int head = 0,tail = 1;
a[0].x = 0;
a[0].y = 0;
a[0].op = -1;
while(head < tail)
{

}
}


int main()
{
while(~scanf("%d%d%d",&a,&b,&c))
{
memset(visit,0,sizeof(visit));
bfs();
}
return 0;
}


举报

相关推荐

0 条评论