规律
zzuli-dk
这个作者很懒,什么都没留下…
展开
-
hdu 6216 规律+二分
思路: 一个素数是否是立方的差, 只要判断是否是两个连续立方数的差。 在线规律查找](http://oeis.org/)#include <stdio.h> #include <string.h> #include <iostream> #include <vector> using namespace std; const int MAXN = 100005; typedef long原创 2017-09-19 19:54:59 · 415 阅读 · 0 评论 -
codeforces B - Ralph And His Magic Field 找规律
之前比赛以为是组合数,结果没写出来,然后手推规律,发现有个2的幂,但是不知道0的情况怎么解决,没想到打表。。 首先暴力打了个表:#include <bits/stdc++.h> using namespace std; const int mod=1000000007; const int MAXN = 15; int n, m, k; int ans; int a[MAXN][MAXN]; bo原创 2017-11-20 12:28:02 · 406 阅读 · 0 评论