
算法
朴素游戏
游戏开发
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
树形dp Strategic game
经典的树形dp: wa了两次 #include #include #include #include #include #include using namespace std; const int MAX=1530; vector bian[MAX]; int dp[MAX][2],visited[MAX];原创 2014-07-15 19:57:33 · 729 阅读 · 0 评论 -
分享一个资料
fen xiang yi椭球原创 2014-11-24 16:17:51 · 578 阅读 · 0 评论 -
leetcode 48
class Solution(object): def rotate(self, matrix): """ :type matrix: List[List[int]] :rtype: void Do not return anything, modify matrix in-place instead. """ ...原创 2018-12-05 22:36:33 · 318 阅读 · 3 评论