P7912 100pts 队列 (used to be using vector, TLE)
This commit is contained in:
2024-10-21 21:41:32 +08:00
parent 8fc5fa15dd
commit b2505a5361
7 changed files with 119 additions and 31 deletions

9
holiday-plan/main.cc Normal file
View File

@@ -0,0 +1,9 @@
#include <iostream>
using namespace std;
int main() {
int n, m, k;
cin >> n >> m >> k;
}