比赛 寒假集训4 评测结果 WWWWWWWWAW
题目名称 回忆 最终得分 10
用户昵称 梦那边的美好ME 运行时间 0.068 s
代码语言 C++ 内存使用 3.70 MiB
提交时间 2026-02-28 08:52:50
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
#define ll long long

ll c,n,m,s;
ll a,u,v,x,y;

int main(){
	freopen("recall.in","r",stdin);
	freopen("recall.out","w",stdout);
	ios::sync_with_stdio(0);
	cin.tie(0);cout.tie(0);
	cin>>c>>n>>m>>s;
	for (int i=1;i<=n;i++){
		cin>>a;
	}
	for (int i=1;i<=m;i++){
		cin>>u>>v>>x>>y;
	}
	cout<<-1<<'\n';
	
	return 0;
}