Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
135460 陈家宝 树根和宝藏 C++ 通过 100 0 MS 256 KB 565 2024-03-05 17:03:45

Tests(8/8):


#include<bits/stdc++.h> using namespace std; int n, m, MAX, tmp, x[2013]; struct Tree { int root, num[201]; } f; int main(){ int root; cin >> n >> m; for(int i=1,y; i<=m; i++) { cin >> x[i] >> y; if(i == 1)f.root = x[1]; if(y == f.root)f.root = x[i]; f.num[x[i]]++; } for(int i=1; i<=m; i++) { if(x[i] == x[i-1])continue; else if(f.num[x[i]] > MAX) { tmp = x[i]; MAX = f.num[x[i]]; } } cout << f.root <<" "<< tmp; return 0; }


测评信息: