动态规划
文章平均质量分 58
lock0812
对待生活充满激情
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Pku 1163 the Triangle
// triangle.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include using namespace std;int _tmain(int argc, _TCHAR* argv[]){ int depth = 0; cin >>原创 2010-04-01 13:01:00 · 677 阅读 · 0 评论 -
Pku 1579 Function Run Fun
#include #include using namespace std;int temp[21][21][21];void calculate(){ for (int i = 0; i < 21; i ++) for (int j = 0; j < 21; j ++) for (int k = 0; k < 21; k ++) {原创 2010-04-01 13:06:00 · 747 阅读 · 0 评论
分享