
ACM
X_GY001
这个作者很懒,什么都没留下…
展开
-
Rails UVA - 514
#include <bits/stdc++.h>using namespace std;stack <int> C;bool Judge(int a[],int n){ int k=0; int i=1; while(true) { if (i!=a[k]) { if (!C.e...原创 2018-12-04 19:51:35 · 165 阅读 · 0 评论 -
Matrix Chain Multiplication UVA - 442
#include <bits/stdc++.h>using namespace std;struct Matrix{ int m; int n; void setM(int m,int n) { this->m=m; this->n=n; } bool prok(Matrix & ...原创 2018-12-04 22:53:10 · 196 阅读 · 0 评论 -
Rhyme Schemes
#include <cmath>#include <cstdio>#include <vector>#include <cstdlib>#include <cstring>#include <iostream>#include <algorithm>using namespace std;doubl原创 2019-01-22 15:50:43 · 296 阅读 · 0 评论