记录编号 602713 评测结果 WWWWWWWWWW
题目名称 4085.外卖 最终得分 0
用户昵称 Gravatar彭欣越 是否通过 未通过
代码语言 C++ 运行时间 0.027 s
提交时间 2025-07-05 15:43:52 内存使用 3.72 MiB
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N=510;
int n,m,a[N];
int head[N],tot;
struct edge {
	int v,nxt;
}e[N*2];
void add (int u,int v) {
	e[++tot].v=v;
	e[tot].nxt=head[u];
	head[u]=tot;
}
int main () {
	freopen("food.in","r",stdin);
	freopen("food.out","w",stdout);
	ios::sync_with_stdio(0);
	cin.tie(0),cout.tie(0);
	cout << 14 <<endl;
	return 0;
}