目录
1.游戏网址
点击进入:app6735.acapp.acwing.com.cn
2.玩法介绍
- 首先,注册并登录账号
- 在
我的Bots
页面查看并管理自己的 Bot - 匹配开始前,
亲自出马
(玩家键入W/S/A/D
控制你的蛇)或者由喜欢的 Bot 出战(如果创建过Bot) - 匹配成功后,两条蛇初始位于地图对角
- 键盘输入,或者代码执行蛇的移动。每回合超过 5 秒不输入判定为出局
- 玩家若撞向障碍物或任意蛇身则死亡,比赛结束
- 赢得比赛获得天梯分
- “对局列表”显示全服比赛回放
3.推荐的示例代码
以下是最简单的寻路算法示例,强烈推荐把它创建为您的第一个 Bot!
如果用更强的算法,I/O请参考该Bot
目前只支持.java
代码
package com.kob.botrunningsystem.utils;
import java.io.File;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
public class Bot implements java.util.function.Supplier<Integer>{
static class Cell{
public int x,y;
public Cell (int x, int y){
this.x = x;
this.y = y;
}
}
private boolean check_tail_increasing(int step){
if(step<=10) return true;
return step % 3 == 1;
}
public List<Cell> getCells(int sx, int sy, String steps){
steps = steps.substring(1, steps.length()-1);
List<Cell> res=new ArrayList<>();
int[] dx={-1,0,1,0}, dy={0,1,0,-1};
int x =sx, y=sy;
int step=0;
res.add(new Cell(x, y));
for(int i=0; i<steps.length();i++) {
int d = steps.charAt(i) - '0';
x+=dx[d];
y+=dy[d];
res.add(new Cell(x,y));
if(!check_tail_increasing(++step)){
res.remove(0);
}
}
return res;
}
public Integer nextMove(String input) {
String[] strs = input.split("#");
int[][] g = new int[13][14];
for (int i = 0,k=0; i <13 ; i++) {
for (int j=0; j< 14;j++,k++){
if (strs[0].charAt(k)=='1'){
g[i][j]=1;
}
}
}
int aSx = Integer.parseInt(strs[1]), aSy = Integer.parseInt(strs[2]);
int bSx = Integer.parseInt(strs[4]), bSy = Integer.parseInt(strs[5]);
List<Cell> aCells = getCells(aSx, aSy, strs[3]);
List<Cell> bCells = getCells(bSx, bSy, strs[6]);
for (Cell c:aCells) g[c.x][c.y]=1;
for (Cell c:bCells) g[c.x][c.y]=1;
int[] dx={-1,0,1,0}, dy={0,1,0,-1};
for(int i=0;i<4;i++){
int x=aCells.get(aCells.size()-1).x +dx[i];
int y=aCells.get(aCells.size()-1).y +dy[i];
if(x>=0 && x<13 && y>=0 && y<14 && g[x][y]==0){
return i;
}
}
return 0;
}
@Override
public Integer get() {
File file = new File("input.txt");
try {
Scanner sc = new Scanner(file);
return nextMove(sc.next());
} catch (FileNotFoundException e) {
throw new RuntimeException(e);
}
}
}
标签:util,java,int,Bot,欢迎,BotBattle,Cell,体验,import
From: https://www.cnblogs.com/aijisjtu/p/18105385