版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!
title: VP记录 - 2023 CCPC 哈尔滨站
author: "Tifa & Foi"
coauthor:
- Foi
categories:
- 算法竞赛
- 题解
- CCPC
tags:
- 算法竞赛
- 题解
- CCPC
date: 2023-11-24 12:46:33
比赛链接
进度: 5 / 13
<!-- more -->
题目概览
题号 |
标题 |
做法 |
*A |
Go go Baron Bunny! |
|
B |
Memory |
|
*C |
Karshilov's Matching Problem II |
|
*D |
A Simple MST Problem |
|
*E |
Revenge on My Boss |
|
*F |
Palindrome Path |
|
*G |
The Only Way to the Destination |
|
H |
Energy Distribution |
|
*I |
Rolling For Days |
|
J |
Game on a Forest |
|
*K |
Omniscia Spares None |
|
L |
Palm Island |
|
M |
Painter |
{% pdf /archives/ccpc-hrbr2023/statements.pdf 600px %}
官方题解
{% pdf /archives/ccpc-hrbr2023/tutorial.pdf 600px %}
A - Go go Baron Bunny!
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp ccpc-hrbr2023/A.cpp %}
</details>B - Memory
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp ccpc-hrbr2023/B.cpp %}
</details>C - Karshilov's Matching Problem II
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp ccpc-hrbr2023/C.cpp %}
</details>D - A Simple MST Problem
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp ccpc-hrbr2023/D.cpp %}
</details>E - Revenge on My Boss
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp ccpc-hrbr2023/E.cpp %}
</details>F - Palindrome Path
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp ccpc-hrbr2023/F.cpp %}
</details>G - The Only Way to the Destination
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp ccpc-hrbr2023/G.cpp %}
</details>H - Energy Distribution
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp ccpc-hrbr2023/H.cpp %}
</details>I - Rolling For Days
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp ccpc-hrbr2023/I.cpp %}
</details>J - Game on a Forest
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp ccpc-hrbr2023/J.cpp %}
</details>K - Omniscia Spares None
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp ccpc-hrbr2023/K.cpp %}
</details>L - Palm Island
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp ccpc-hrbr2023/L.cpp %}
</details>M - Painter
解题思路
复杂度
代码参考
<details open>
<summary><font color='orange'>Show code</font></summary>
{% icodeweb blog lang:cpp ccpc-hrbr2023/M.cpp %}
</details>