Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
55429 | lgh | T2 酒店 | C++ | 解答错误 | 33 | 0 MS | 264 KB | 381 | 2022-08-18 11:00:23 |
#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("NO"),exit(0); return 0; }