2018-team7-CF25
从 Trac 迁移的文章
这是从旧校内 Wiki 迁移的文章,可能存在一些样式问题,您可以向 memset0 反馈。
原文章内容如下:
今天的场比较有毒= =
C题开出来了
D题没什么人做
最后就过了200个
~~A~~
Vasya and Chocolate
standard input/output
1 s, 256 MB Submit Add to favourites x5047
~~B ~~
Vasya and Isolated Vertices
standard input/output
1 s, 256 MB Submit Add to favourites x3301
~~C~~
Make It Equal
standard input/output
2 s, 256 MB Submit Add to favourites x1828
~~D~~
Three Pieces
standard input/output
2 s, 256 MB Submit Add to favourites x220
E
Side Transmutations
standard input/output
2 s, 256 MB Submit Add to favourites x174
F
Up and Down the Tree
standard input/output
3 s, 256 MB Submit Add to favourites x50
G
Fibonacci Suffix
standard input/output
1 s, 256 MB Submit Add to favourites x6
ABC都简单
### D题
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
下象棋
象可以斜着走
车可以上下走
马走日字
刚开始把题目想复杂了 预处理出按照顺序走的那个东西然后暴力跑最短路
但预处理有点复杂 早上想了很久觉得不可做
看别人的代码
很妙
就和分层图一样 处理狠多的状态~
然后就可以开始做了
https://blog.csdn.net/qq_38677814/article/details/83025858
今天的场比较有毒= =
C题开出来了
D题没什么人做
最后就过了200个
A
Vasya and Chocolate
standard input/output
1 s, 256 MB Submit Add to favourites x5047
B
Vasya and Isolated Vertices
standard input/output
1 s, 256 MB Submit Add to favourites x3301
C
Make It Equal
standard input/output
2 s, 256 MB Submit Add to favourites x1828
D
Three Pieces
standard input/output
2 s, 256 MB Submit Add to favourites x220
E
Side Transmutations
standard input/output
2 s, 256 MB Submit Add to favourites x174
F
Up and Down the Tree
standard input/output
3 s, 256 MB Submit Add to favourites x50
G
Fibonacci Suffix
standard input/output
1 s, 256 MB Submit Add to favourites x6
ABC都简单
### D题
```
下象棋
象可以斜着走
车可以上下走
马走日字
刚开始把题目想复杂了 预处理出按照顺序走的那个东西然后暴力跑最短路
但预处理有点复杂 早上想了很久觉得不可做
看别人的代码
很妙
就和分层图一样 处理狠多的状态~
然后就可以开始做了
```
https://blog.csdn.net/qq_38677814/article/details/83025858