[题面戳我][1] 题意:你现在处于$(1,1,1)$,问可以看见多少个第一卦限的整点。 第一卦限:就是$(x,y,z)$中$x,y,z$均为正 sol 首先 ,然后答案就变成了 $$\sum_{i=1}^{L}\sum_{j=1}^{W}\sum_{k=1}^{H}[\gcd(i,j,k)==1] ...
分类:
其他好文 时间:
2018-01-16 00:37:13
阅读次数:
166
A children's puzzle that was popular 30 years ago consisted of a 5 5 frame which contained 24 small squares of equal size. A unique letter of the alph ...
分类:
其他好文 时间:
2018-01-15 20:28:54
阅读次数:
204
题目 Katu Puzzle is presented as a directed graph G(V, E) with each edge e(a, b) labeled by a boolean operator op (one of AND, OR, XOR) and an integer c ...
分类:
其他好文 时间:
2018-01-15 14:44:58
阅读次数:
149
【链接】 "我是链接,点我呀:)" 【题意】 在这里输入题意 【题解】 IDA 保证这次移动的方格不和前一次重复。 然后加一个8数码的剪枝就行了。 看看当前状态和目标状态有多少个地方是不一样的。 如果当前的步数加上它仍然比答案大。 显然可以剪枝。 因为不同的数目肯定小于等于要移动的数目; (每次移动 ...
分类:
其他好文 时间:
2018-01-01 20:39:01
阅读次数:
143
题目链接:http://codeforces.com/problemset/problem/815/A 题目: On the way to school, Karen became fixated on the puzzle game on her phone! The game is played ...
分类:
其他好文 时间:
2017-12-25 20:56:03
阅读次数:
223
学习建图 cpp include include include using namespace std; int n, m, hea[2005], cnt, scc, ind, dfn[2005], loo[2005], bel[2005]; int uu, vv, ww, sta[2005], ...
分类:
其他好文 时间:
2017-12-10 22:51:26
阅读次数:
186
标签: ACM Lele 最近上课的时候都很无聊,所以他发明了一个数字游戏来打发时间。 这个游戏是这样的,首先,他拿出几张纸片,分别写上0到9之间的任意数字(可重复写某个数字),然后,他叫同学随便写两个数字X和K。Lele要做的事情就是重新拼这些纸牌,组成数字 T ,并且 T + X 是 K 的正整 ...
分类:
其他好文 时间:
2017-12-06 20:15:53
阅读次数:
166
注:实现时无需考虑不合法的情况。 解答过程:感觉没有问题,可后来通过率才37.5%,puzzle。 ...
分类:
其他好文 时间:
2017-11-30 23:40:45
阅读次数:
264
题目链接:http://poj.org/problem?id=1651 Time Limit: 1000MS Memory Limit: 65536K Description The multiplication puzzle is played with a row of cards, each ...
分类:
其他好文 时间:
2017-11-24 21:29:32
阅读次数:
167
"原题" 这是一道简单的2 SAT! 其实2 SAT的题只要想明白怎么连边就很简单了啊! 这道题的连边思路还是很简单的啊~这里就不赘述了。 而对于是否存在可行解,只要判断是否在同一个强连通分量里。 cpp include include define N 1010 using namespace s ...
分类:
其他好文 时间:
2017-11-18 12:51:03
阅读次数:
129