
模拟
「已注销」
这个作者很懒,什么都没留下…
展开
-
[noj 1555] The Sum of F(x) and G(x)
签到题。不知道校内赛新生们做的怎么样原创 2014-05-05 17:40:35 · 1079 阅读 · 0 评论 -
[noj 1561] Set Time
简单模拟题。#include#includeusing namespace std;int getyear(int x){ if((x%4 == 0 && x%100 != 0) || x%400 == 0) return 366; return 365;}int month[2][13] = { {31,28,31,30,31,30,31,31,30,31,30,3原创 2014-05-05 17:22:05 · 943 阅读 · 0 评论 -
[算法浅析] 用两个栈实现队列
基本的思路还是很清晰的,第一个原创 2014-08-22 02:10:15 · 1277 阅读 · 0 评论