HDU 4452 Running Rabbits 【模拟】

兔子赛跑模拟算法

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4452

有几个需要注意的地方:1,不用考虑在一秒内,两个兔子移动会不会相遇,如果考虑就真的难了; 2,相遇的时候,如果到了左转的时间,会优先处理相遇的情况;3,碰到墙反转方向的时候,不计时;

小技巧:用编号表示方向,编号+2取余就是反转的方向编号,+3取余就是左转的方向编号,+1取余是右转的;

一秒前进的位置最好是一格一格的模拟,碰到墙就反转方向,不用担心超时

注意:我写的代码的xy轴和题目是相反的,题目的x轴是纵向的,我的是数学的那种标准;

特别麻烦的题目;

//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
#include<cmath>
#include<queue>
#include<map>
#include<stack>
#include<sstream>
#include<vector>
#include<string>
#include<set>

using namespace std;
//using namespace __gnu_pbds;

#define IOS ios::sync_with_stdio(false); cin.tie(0);
#define REP(i,n) for(int i=0;i<n;++i)

int read(){

    int r=0,f=1;char p=getchar();
    while(p>'9'||p<'0'){if(p=='-')f=-1;p=getchar();}
    while(p>='0'&&p<='9'){r=r*10+p-48;p=getchar();}return r*f;
}

//typedef tree<pair<long long,int>,null_type,less< pair<long long,int> >,rb_tree_tag,tree_order_statistics_node_update> rbtree;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int,int> pii;
typedef pair<long long,long long> pll;
const int Maxn = 1e5+10;
const long long LINF = 1e18;
const int INF = 0x3f3f3f3f;
const int Mod = 10001;
const double PI = acos(-1.0);

struct Node {
    int x,y;
} dir[4];

map<string, int> mp;
map<int,string> mp2;

bool check (int &x, int &y,int n) {
    if(x < 1 || x > n || y < 1 || y > n) {
        x = x < 1 ? 1 : x;
        x = x > n ? n : x;
        y = y < 1 ? 1 : y;
        y = y > n ? n : y;
        return true;
    }
    else return false;
}

void chage (string &a, string &b) { // 相遇
    string tmp = a;
    a = b; b = tmp;
}

void chage2 (string &a,int sg) { // 1掉头,2左转
    if(sg == 1) a = mp2[(mp[a]+2)%4];
    else a = mp2[(mp[a]+3)%4];
}

int main (void)
{
    IOS;
    int N;
    mp["N"] = 0; mp["E"] = 1; mp["S"] = 2; mp["W"] = 3;
    mp2[0] = "N"; mp2[1] = "E"; mp2[2] = "S"; mp2[3] = "W";
    dir[0].x = 0; dir[0].y = -1; dir[1].x = 1; dir[1].y = 0;
    dir[2].x = 0; dir[2].y = 1; dir[3].x = -1; dir[3].y = 0;
	while (cin >> N) {
        if(!N) break;
        string d1,d2; int sp1,sp2,t1,t2,x1,y1,x2,y2;
        x1 = y1 = 1; x2 = y2 = N;
        cin >> d1 >> sp1 >> t1;
        cin >> d2 >> sp2 >> t2;
        int p,cnt = 0; cin >> p;
        while (++cnt <= p) {
            int tmp = 0;
            while (++tmp <= sp1) {
                x1+=dir[mp[d1]].x; y1+=dir[mp[d1]].y;
                if(check(x1,y1,N)) {
                    chage2(d1,1); --tmp;
                }
            }
            tmp = 0;
            while (++tmp <= sp2) {
                x2+=dir[mp[d2]].x; y2+=dir[mp[d2]].y;
                if(check(x2,y2,N)) {
                    chage2(d2,1); --tmp;
                }
            }
            if(x1 == x2 && y1 == y2) chage (d1,d2);
            else {
                if(cnt%t1 == 0) chage2(d1,2);
                if(cnt%t2 == 0) chage2(d2,2);
            }
        }
        cout << y1 << " " << x1 << endl;
        cout << y2 << " " << x2 << endl;
 	}
   	return 0;
}

 

【最优潮流】直流最优潮流(OPF)课设(Matlab代码实现)内容概要:本文档主要围绕“直流最优潮流(OPF)课设”的Matlab代码实现展开,属于电力系统优化领域的教学与科研实践内容。文档介绍了通过Matlab进行电力系统最优潮流计算的基本原理与编程实现方法,重点聚焦于直流最优潮流模型的构建与求解过程,适用于课程设计或科研入门实践。文中提及使用YALMIP等优化工具包进行建模,并提供了相关资源下载链接,便于读者复现与学习。此外,文档还列举了大量与电力系统、智能优化算法、机器学习、路径规划等相关的Matlab仿真案例,体现出其服务于科研仿真辅导的综合性平台性质。; 适合人群:电气工程、自动化、电力系统及相关专业的本科生、研究生,以及从事电力系统优化、智能算法应用研究的科研人员。; 使用场景及目标:①掌握直流最优潮流的基本原理与Matlab实现方法;②完成课程设计或科研项目中的电力系统优化任务;③借助提供的丰富案例资源,拓展在智能优化、状态估计、微电网调度等方向的研究思路与技术手段。; 阅读建议:建议读者结合文档中提供的网盘资源,下载完整代码与工具包,边学习理论边动手实践。重点关注YALMIP工具的使用方法,并通过复现文中提到的多个案例,加深对电力系统优化问题建模与求解的理解。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值