Skip to content

Instantly share code, notes, and snippets.

View gzz2000's full-sized avatar

Zizheng Guo gzz2000

View GitHub Profile
@gzz2000
gzz2000 / bzoj1494_baoli.cpp
Created May 5, 2017 03:56
BZOJ1494 failing dp
#include <cstdio>
#include <algorithm>
using namespace std;
typedef long long ll;
const ll mod = 65521;
inline ll pow(ll a, ll b) {
ll ret = 1;