欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

算法模板

程序员文章站 2022-06-22 17:10:53
算法模板图论最小生成树prim(朴素版)prim(堆优化版)#includeusing namespace std;#define F first#define S second#define IOS typedef pair PII;ios::sync_with_stdio(false);cin.tie(0);cout.tie(0)typedef long long ll;const int INF=0x3f3f3f...

#include<bits/stdc++.h>
using namespace std;
#define F first
#define S second

本文地址:https://blog.csdn.net/weixin_45809826/article/details/107514127

相关标签: 算法模板