2009年8月1日

hdu 2699 ( Five in a Row ) 五子棋

摘要: #include <iostream>#include <queue>using namespace std;struct Node{ char x, y, time, dirc; bool no_stone;};char map[15][15], c;int dir[4][2] = {{0,1},{1,0},{1,-1},{1,1}};bool bfs(int x, in... 阅读全文

posted @ 2009-08-01 21:30 ZAFU_VA 阅读(253) 评论(0) 推荐(0)

导航