Compare commits

..

2 Commits

Author SHA1 Message Date
93cdd285ff update 2025-08-14 10:11:27 +08:00
fa55095f9d update 2025-08-14 09:37:06 +08:00
3 changed files with 32 additions and 1 deletions

3
src/8/12/P11232.cpp Normal file
View File

@ -0,0 +1,3 @@
int main(){
}

View File

@ -17,5 +17,5 @@ u 有军营v 有军营dp[u][1] * dp[v][1]
int main(){
}

28
src/8/12/P9754.cpp Normal file
View File

@ -0,0 +1,28 @@
#include <cstdint>
#include <iostream>
#include <map>
#include <string>
using ll = int64_t;
ll n;
std::map<std::string, ll> m = {
};
int main(){
std::cin>>n;
for(ll i=1;i<=n;i++){
ll op;
std::cin>>op;
if(op==1){
std::string s;
std::cin>>s;
ll k;
std::cin>>k;
for(ll j=1;j<=k;j++){
}
}
}
}