Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
121609 | 周震东 | 树根和宝藏 | C++ | 编译错误 | 0 | 0 MS | 0 KB | 560 | 2024-01-22 08:33:41 |
#include <bits/stdc++.h> using namespace std; int n , m , x , y , ans , mx; struct tree { int id, father, son; } t[110]; inline bool cmp(tree a, tree b) { return a.son > b.son; } int main() { cin >> n >> m; while(m--) { cin >> x >> y); t[x].id = x; t[x].son++; t[y].id = y; t[y].father = x; } sort(t + 1, t + n + 1, cmp); for(int i = 1; i <= n; i++) { if(t[i].father == 0) cout << t[i].id << " "; } cout << t[1].id; return 0; }