| 比赛 | 寒假集训5 | 评测结果 | AWWWWWWWWWWWWWWWWWWW |
|---|---|---|---|
| 题目名称 | 魔法森林 | 最终得分 | 5 |
| 用户昵称 | 对立猫猫对立 | 运行时间 | 0.060 s |
| 代码语言 | C++ | 内存使用 | 3.78 MiB |
| 提交时间 | 2026-03-01 09:19:27 | ||
#include <bits/stdc++.h>
#define int long long
using namespace std;
int n, m;
struct edge {
int to, a, b;
};
vector<edge> g[5005];
signed main() {
#ifndef LOCAL
freopen("magicalforest.in", "r", stdin);
freopen("magicalforest.out", "w", stdout);
#endif
ios::sync_with_stdio(0);
cin.tie(0);
cout << -1 << endl;
return 0;
}