D - Restricted Permutation

今天状态不好,D都差点没有出,发一下,警示一下
https://atcoder.jp/contests/abc223/tasks/abc223_d
拓扑序+字典序限制要想到小根堆替换队列

#include<unordered_set>
#include<unordered_map>
#include<functional>
#include<algorithm>
#include<string.h>
#include<iostream>
#include<iterator>
#include<cstring>
#include<numeric> 
#include<cstdio>
#include<vector>
#include<queue>
#include<stack>
#include<cmath>
#include<set>
#include<map>

using namespace std;
//================================
#define debug(a) cout << #a": " << a << endl;
#define rep(i, ll,rr) for(int i = ll; i <= rr; ++i)
#define N 200010
//================================
typedef pair<int,int> pii;
#define x first
#define y second
typedef long long LL; typedef unsigned long long ULL; typedef long double LD;
inline LL read() { LL s = 0, w = 1; char ch = getchar(); for (; !isdigit(ch); ch = getchar()) if (ch == '-') w = -1; for (; isdigit(ch); ch = getchar())    s = (s << 1) + (s << 3) + (ch ^ 48); return s * w; }
inline void print(LL x, int op = 10) { if (!x) { putchar('0'); if (op)  putchar(op); return; }  char F[40]; LL tmp = x > 0 ? x : -x; if (x < 0)putchar('-');  int cnt = 0;    while (tmp > 0) { F[cnt++] = tmp % 10 + '0';     tmp /= 10; }    while (cnt > 0)putchar(F[--cnt]);    if (op) putchar(op); }
//================================= 
int e[N],ne[N],h[N],idx=0;
int n,m,din[N];
vector<int> ans;

void add(int a,int b){
	e[idx]=b,ne[idx]=h[a],h[a]=idx++;
}

void topsort(){
	priority_queue<int,vector<int>,greater<int>> heap;
	for(int i=1;i<=n;i++) if(!din[i]) heap.push(i);
	
	while(heap.size()){
		int u=heap.top();heap.pop();
		ans.push_back(u);
		
		for(int i=h[u];~i;i=ne[i]){
			int j=e[i];
			din[j]--;
			if(!din[j]) heap.push(j);		
		}
	}
	
	if(ans.size()==n) for(auto u:ans) cout << u << " ";
	else puts("-1");
}
//=================================
int main(){
	memset(h,-1,sizeof h);
	n=read(),m=read();
    rep(i,1,m){
    	int a=read(),b=read();
    	add(a,b);din[b]++;
    }
    topsort();
	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值