在题目描述里面是说用“
"0":{"x":Number,"y":Number}, //0号玩家初始位置的x,y坐标
"1":{"x":Number,"y":Number}, //1号玩家初始位置的x,y坐标”
”分别表示两个玩家的位置。
但是在样例程序里面却是“
int x=input["requests"][(Json::Value::UInt) 0]["x"].asInt(); //读蛇初始化的信息
if (x==1)
{
snake[0].push_front(point(1,1));
snake[1].push_front(point(n,m));
}
else
{
snake[1].push_front(point(1,1));
snake[0].push_front(point(n,m));
}
”。
请问应该以哪个为准?
并且:玩家的出生点只会在两个角上吗?怎样保证障碍物的设置对两方公平?
2015-5-23 16:28:36
14
[]