Hash
我要去看得最远的地方
要把自己活成一束光,自信坦荡,光芒万丈,不卑不亢,不慌不忙,不羡慕谁,不依赖谁。抬头所见即是温柔。
展开
-
Stammering Aliens (Hash+二分)
Dr. Ellie Arroway has established contact with an extraterrestrial civilization. However, all efforts to decode their messages have failed so far because, as luck would have it, they have stumbled upo...原创 2018-08-18 21:09:28 · 394 阅读 · 1 评论 -
Oulipo(hash 模板)
#include <stdio.h> #include <algorithm> #include <string.h> #include <string> using namespace std; typedef unsigned long long ull;//ull具有自我取模的特性 #define mod 1000000007 ull c...原创 2018-08-17 16:41:52 · 218 阅读 · 0 评论 -
Crazy Search (hash)
#include <stdio.h> #include <algorithm> //#include <map> #include <string.h> char a[16000006]; using namespace std; int vis[600],hash[16000005];//内存都可以超,时间也要注意,有可能超; //其实我有点...原创 2018-08-17 16:45:44 · 137 阅读 · 0 评论 -
磁砖样式(蓝桥dfs+hash)
答案:101466 小明家的一面装饰墙原来是 3*10 的小方格。 现在手头有一批刚好能盖住2个小方格的长方形瓷砖。 瓷砖只有两种颜色:黄色和橙色。 小明想知道,对于这么简陋的原料,可以贴出多少种不同的花样来。 小明有个小小的强迫症:忍受不了任何2*2的小格子是同一种颜色。 (瓷砖不能切割,不能重叠,也不能只铺一部分。另外,只考虑组合图案,请忽略瓷砖的拼缝) 显然,对于 2*3 个小格子来说,...原创 2019-05-15 23:21:11 · 162 阅读 · 0 评论