UVa 10384 推门游戏(The Wall Pusher)

博主分享了成功解决UVa 10384编程题目的经验,提到进行了两次剪枝操作。
摘要由CSDN通过智能技术生成

哈哈哈哈哈哈哈哈哈哈哈哈哈哈
我终于AC啦!

俺减了两次枝

#include<bits/stdc++.h>
#define LL long long
#define ms(s) memset(s, 0, sizeof(s))
#define INF 0x7fffffff
using namespace std;
// 4 * 6
const int r = 4;
const int c = 6;
int maze[r * 2][c * 2];
// <- ↑ -> ↓
const int dx[] = {
   0, -1, 0, 1};
const int dy[] = {
   -1, 0, 1, 0};
const char w[] = {
   'W', 'N', 'E', 'S'};
const int rev[] = {
   2, 3, 0, 1};
vector<pair<int, int>> endVec;

int h(int x, int y) {
   
    int minn = INF;
    for(auto& pair: endVec) {
   
        //cout << "pair.first: " << pair.first << " pair.second: " << pair.second << endl;
        minn = min(abs(pair.first - x) + abs(pair.second - y), minn);
    }
    //cout << ">
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值