版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!
title: VP记录 - 2023 ICPC 亚洲区域赛(南京)
author: "Tifa & Foi"
coauthor:
- Foi
categories:
- 算法竞赛
- 题解
- ICPC
tags:
- 算法竞赛
- 题解
- ICPC
date: 2023-11-29 19:07:55
比赛链接
进度: 7 / 13
<!-- more -->
题目概览
题号 |
标题 |
做法 |
A |
Cool, It’s Yesterday Four Times More |
|
*B |
Intersection over Union |
|
C |
Primitive Root |
|
*D |
Red Black Tree |
|
*E |
Extending Distance |
|
F |
Equivalent Rewriting |
|
G |
Knapsack |
|
*H |
Puzzle: Question Mark |
|
I |
Counter |
|
*J |
Suffix Structure |
|
*K |
Grand Finale |
|
L |
Elevator |
|
M |
Trapping Rain Water |
英文题面
{% pdf /archives/icpc-anjr2023/statements-en.pdf 600px %}
中文题面
{% pdf /archives/icpc-anjr2023/statements-zh.pdf 600px %}
官方题解
{% pdf /archives/icpc-anjr2023/tutorial.pdf 600px %}
A - Cool, It’s Yesterday Four Times More
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp icpc-anjr2023/A.cpp %}
</details>B - Intersection over Union
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp icpc-anjr2023/B.cpp %}
</details>C - Primitive Root
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp icpc-anjr2023/C.cpp %}
</details>D - Red Black Tree
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp icpc-anjr2023/D.cpp %}
</details>E - Extending Distance
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp icpc-anjr2023/E.cpp %}
</details>F - Equivalent Rewriting
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp icpc-anjr2023/F.cpp %}
</details>G - Knapsack
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp icpc-anjr2023/G.cpp %}
</details>H - Puzzle: Question Mark
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp icpc-anjr2023/H.cpp %}
</details>I - Counter
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp icpc-anjr2023/I.cpp %}
</details>J - Suffix Structure
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp icpc-anjr2023/J.cpp %}
</details>K - Grand Finale
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp icpc-anjr2023/K.cpp %}
</details>L - Elevator
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp icpc-anjr2023/L.cpp %}
</details>M - Trapping Rain Water
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp icpc-anjr2023/M.cpp %}
</details>