06 2019 档案

摘要:``` Live2D ... 阅读全文
posted @ 2019-06-30 19:48 hulean 阅读(350) 评论(0) 推荐(0)
摘要:A. 平均分(average) 提交程序: cpp include using namespace std; char s[1000]; int n; int main() { scanf("%s",s+1); n=strlen(s+1); for(int i=2;i Accepted 100分 ~ 阅读全文
posted @ 2019-06-29 10:07 hulean 阅读(364) 评论(0) 推荐(0)
摘要:看见很多dalao写了什么双向BFS,蒟蒻表示不会写啊。 怎么办办? 先来分析一下题目,一眼看去就是一个搜索题,考虑DFS与BFS。 先放一份DFS的代码: cpp include using namespace std; bool a[5][5],b[5][5]; char c; int dx[5 阅读全文
posted @ 2019-06-20 09:30 hulean 阅读(404) 评论(0) 推荐(0)