ZJOI'15 Day2 课件
其实我自己只写过一个Kanji Shiritori。。。在二次作业的时候。。。其他的都是我瞎BB的。
Gym: 2014, VII Samara Regional Intercollegiate Programming Contest
为了不让blog看起来太荒凉,贴个三颗星Gym来凑数……
买教训
Ruchiose高高兴兴地来到了NOI赛场上,在赛场上他久违看到了买老师。
TO DO LIST (Before NOI2014)
想做很多东西……但是现在还没确定做什么。
Gym: 2013, VI Samara Regional Intercollegiate Programming Contest
早上打了DotA,感觉一整天打游戏不太好。
于是下午做三颗星难度的Gym玩。队员是Ruchiose与__Shi。
ZJOI2014 Day2 Preparing... ...
似乎回忆录可以开始连载了?
总之希望每天都有东西可以更。
APIO 2014 upsolved.
CTSC2014 & APIO2014酱油记
作死……
void preprocess_fibonacci() { Hash.clear(); Fib[0] = 0; Fib[1] = 1; cir = 2; Hash.insert(1); // (0,1) while (1) { Fib[cir] = (Fib[cir - 1] + Fib[cir - 2]) % P; i64 hashvalue = (((i64)Fib[cir - 1]) << 16) + Fib[cir]; if (Hash.count(hashvalue)) break; Hash.insert(hashvalue); cir++; } cir--; //printf("%d\n", cir); }