mirror of
https://gitcode.com/Zengtudor/alg2025.git
synced 2025-12-20 22:21:46 +00:00
Compare commits
2 Commits
5af9efe1eb
...
93cdd285ff
| Author | SHA1 | Date | |
|---|---|---|---|
| 93cdd285ff | |||
| fa55095f9d |
3
src/8/12/P11232.cpp
Normal file
3
src/8/12/P11232.cpp
Normal file
@ -0,0 +1,3 @@
|
||||
int main(){
|
||||
|
||||
}
|
||||
@ -17,5 +17,5 @@ u 有军营,v 有军营:dp[u][1] * dp[v][1]
|
||||
|
||||
|
||||
int main(){
|
||||
|
||||
|
||||
}
|
||||
28
src/8/12/P9754.cpp
Normal file
28
src/8/12/P9754.cpp
Normal 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++){
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user