比赛 |
20120710 |
评测结果 |
AAWAWAAWWW |
题目名称 |
三元限制最短路 |
最终得分 |
50 |
用户昵称 |
王者自由 |
运行时间 |
0.729 s |
代码语言 |
C++ |
内存使用 |
112.63 MiB |
提交时间 |
2012-07-10 08:24:19 |
显示代码纯文本
#include <cstdio>
#include <cstdlib>
#include <algorithm>
#include <vector>
using namespace std;
const int N = 3000 + 10;
int n, m, k, a, b, c;
bool G[N][N];
vector<int> f[N][N];
int main() {
freopen("patha.in", "r", stdin);
freopen("patha.out", "w", stdout);
scanf("%d %d %d", &n, &m, &k);
for(int i=1; i<=m; i++) {
scanf("%d %d", &a, &b);
G[a][b] = G[b][a] = 1;
if(G[1][n]) {
printf("1\n1 %d\n", n);
return 0;
}
}
for(int i=1; i<=m; i++) {
scanf("%d %d %d", &a, &b, &c);
f[a][b].push_back(c);
}
return 0;
}