mirror of
https://gitcode.com/Zengtudor/alg2025.git
synced 2025-09-04 01:01:43 +00:00
refactor(P2016.cpp): 移除未使用的头文件和常量
删除未使用的<cstdio>头文件和未使用的常量inf,简化代码结构
This commit is contained in:
parent
8894e59851
commit
b4e809156f
@ -5,13 +5,11 @@
|
|||||||
*/
|
*/
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <cstdio>
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <istream>
|
#include <istream>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
using ll = int64_t;
|
using ll = int64_t;
|
||||||
|
|
||||||
const ll inf = 1e9;
|
|
||||||
ll n;
|
ll n;
|
||||||
std::vector<std::vector<ll>> edg,dp;
|
std::vector<std::vector<ll>> edg,dp;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user