[README] use tasble symbols

This commit is contained in:
Tony Zhang 2021-08-24 13:12:06 +08:00 committed by GitHub
parent 408abb7eb1
commit e1c7c59345
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,18 +51,18 @@ A Maker is an executable that generates the input of a single test case.
```plaintext
.
|- <data path> // Auto Generated
| |- <name>.1.1.in
| |- <name>.1.1.out
| |- ...
| |- <name>.<subtask count>.<n>.in
| |- <name>.<subtask count>.<n>.out
|
|- mk_<name> // Compile yourself
|- std_<name> // Compile yourself
|- run_<name> // Compile yourself
|- vmake.py // Downloaded
|- vcheck.py // Downloaded
├─ <data path> // Auto Generated
│ ├─ <name>.1.1.in
│ ├─ <name>.1.1.out
│ ├─ ...
│ ├─ <name>.<subtask count>.<n>.in
│ └─ <name>.<subtask count>.<n>.out
├─ mk_<name> // Compile yourself
├─ std_<name> // Compile yourself
├─ run_<name> // Compile yourself
├─ vmake.py // Downloaded
└─ vcheck.py // Downloaded
```
## Example
@ -166,12 +166,12 @@ Here is a example of generating test-data of the _A + B problem_ and testing a s
```
.
|- data
| |- AplusB.1.1.in
| |- AplusB.1.1.out
| |- ...
| |- AplusB.2.4.in
| |- AplusB.2.4.out
├─ data
| ├─ AplusB.1.1.in
| ├─ AplusB.1.1.out
| ├─ ...
| ├─ AplusB.2.4.in
| └─ AplusB.2.4.out
```
7. Lets try another solution without using `long long` (who cannot pass the test).
@ -221,4 +221,4 @@ Here is a example of generating test-data of the _A + B problem_ and testing a s
AC: 6 [60%]
WA: 4 [40%]
RE: 0 [0%]
```
```