摘要:
题目描述 https://www.luogu.com.cn/problem/P1001 代码: #include <cstdio> int main(){ long long a,b; scanf("%d %d",&a,&b); printf("%d",a+b); } 遇到问题: scanf 和 p 阅读全文
摘要:
Write a program to test if a give sequence Seq is a topological order of a given graph Graph. Format of functions: bool IsTopSeq( LGraph Graph, Vertex 阅读全文