
ACM题解
Anderson_An
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
CDOJ_511题解
题目链接: http://mozhu.today/#/problem/show/511 题解: 本题题意略有问题,考虑到了’_’、’*’、’+’、’#’符号。且开数组时不能刚好开50,猜测系统把\n也看做了字符。 代码:#include <stdio.h>#include <stdlib.h>#include <string.h>#include <math.h>//CDOJ原创 2017-03-22 16:24:51 · 494 阅读 · 0 评论 -
CDOJ_758题解
题目链接: http://mozhu.today/#/problem/show/758 题目代码:#include "iostream"#include "stdio.h"using namespace std;int main(){ int T,i,j; int x, y, t, x0, y0; int result[101] = { 0 }; char原创 2017-03-26 23:15:01 · 408 阅读 · 0 评论