摘要: 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <algorithm> 5 #include <time.h> 6 using namespace std; 7 8 const int maxn=5e2+10; 9 long A[maxn][maxn],B[maxn][maxn],C[maxn][maxn];10 11 int n;12 13 int main()14 {15 srand((unsigned)time(NULL));16 阅读全文
posted @ 2012-12-16 23:02 Missa 阅读(288) 评论(0) 推荐(0)