Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
55450 lgh T3 作业 C++ 解答错误 20 0 MS 264 KB 365 2022-08-18 11:03:28

Tests(2/10):


#include<bits/stdc++.h> using namespace std; int hea[620001],tot,d[600021],v[620001]; int n,m,s,t,L; priority_queue< pair<int,int> > q; struct Edge{ int next,to,dis; }edge[620001]; //vector<int>vec[] void add(int x,int y,int z) { edge[++tot].next=hea[x]; edge[tot].to=y; edge[tot].dis=z; hea[x]=tot; } int main() { puts("0"); return 0; }


测评信息: