摘要: #include #define LL long long using namespace std; const int maxn=1e3+10; int a[maxn][maxn]; int m4[4][4]={ 1,2,3,4, 4,3,2,1, 2,1,4,3, 3,4,1,2 }; void meow(int n) { if(n==4) ... 阅读全文
posted @ 2018-10-01 21:30 BIack_Cat 阅读(149) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #define LL long long using namespace std; const int maxn=1e3+10; #define in(x) scanf("%lld",&x) #define inf 9223372036854775807LL LL ex_gcd(LL a,LL b,LL&x,LL &... 阅读全文
posted @ 2018-10-01 19:45 BIack_Cat 阅读(154) 评论(0) 推荐(0) 编辑
摘要: #include int a[1000010],q[1000010],L[1000010],top,n,m,Q; int main(){ scanf("%d%d%d",&n,&m,&Q); for(int i=1;i<=n;i++)scanf("%d",a+i); for(int i=1;i<=n;i++){ if(!top)q[++top]=i; ... 阅读全文
posted @ 2018-10-01 19:38 BIack_Cat 阅读(117) 评论(0) 推荐(0) 编辑