luogu P3627 [APIO2009]抢掠计划

2021-03-06 16:26

阅读:559

标签:stream   set   cst   algo   stack   ons   namespace   dex   计划   

代码:

#include
#include
#include
#include
#include
#include

using namespace std;

const int N=500009;
stack  s;
queue  q;
int head[N],cnt,n,m,LOW[N],DFN[N],sum[N],bar[N],belong[N],S,P,money[N],ans,Bar[N];
int Index,SCC,ins[N],x[N],y[N],f[N],deg[N];
struct Edge
{
	int nxt,to;
}g[N];

void add(int from,int to)
{
	g[++cnt].nxt=head[from];
	g[cnt].to=to;
	head[from]=cnt;
}

int read()
{
	int x=0;
	char c=getchar();
	while(c‘9‘)
		c=getchar();
	while(c>=‘0‘&&c

luogu P3627 [APIO2009]抢掠计划

标签:stream   set   cst   algo   stack   ons   namespace   dex   计划   

原文地址:https://www.cnblogs.com/With-penguin/p/12853992.html


评论


亲,登录后才可以留言!