mirror of
https://gitcode.com/Zengtudor/alg2025.git
synced 2025-10-17 21:42:25 +00:00
feat: 添加P7988题目基础代码框架
实现题目P7988的基础代码框架,包括输入处理和基本数据结构定义
This commit is contained in:
parent
de497e2c80
commit
eb1f6031d1
24
src/10/11/P7988.cpp
Normal file
24
src/10/11/P7988.cpp
Normal file
@ -0,0 +1,24 @@
|
||||
#include <cstdint>
|
||||
#include <iostream>
|
||||
#include <istream>
|
||||
using ll = int64_t;
|
||||
|
||||
#define sl static inline
|
||||
|
||||
const ll maxn = 2e5+5;
|
||||
ll n, a[maxn];
|
||||
|
||||
sl void dfs(){
|
||||
|
||||
}
|
||||
|
||||
int main(){
|
||||
std::iostream::sync_with_stdio(false);
|
||||
std::cin.tie(nullptr);
|
||||
|
||||
std::cin>>n;
|
||||
for(ll i=1;i<=n;i++){
|
||||
std::cin>>a[i];
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user