摘要: HDU 2085 核反应堆 /* HDU 2085 核反应堆 简单递推 */ #include <cstdio> const int N = 35; long long a[N], b[N]; //a表示高能质点数目,b表示低能质点数目 int main() { #ifdef _LOCAL freo 阅读全文
posted @ 2015-12-28 03:23 tan90丶 阅读(163) 评论(0) 推荐(0) 编辑
摘要: HDU 2083 简易版之最短距离 /* HDU 2083 简易版之最短距离 */ #include <cstdio> #include <algorithm> using namespace std; const int maxn = 505; int a[maxn]; int main() { 阅读全文
posted @ 2015-12-28 03:11 tan90丶 阅读(258) 评论(0) 推荐(0) 编辑