比赛 东方版NOIP模拟赛 评测结果 AAATTTTAATAAAATATTTT
题目名称 Yuyuko 最终得分 50
用户昵称 Satoshi 运行时间 32.257 s
代码语言 C++ 内存使用 12.18 MiB
提交时间 2015-10-28 21:12:08
显示代码纯文本
  1. #include<set>
  2. #include<map>
  3. #include<stack>
  4. #include<queue>
  5. #include<cmath>
  6. #include<cctype>
  7. #include<cstdio>
  8. #include<string>
  9. #include<vector>
  10. #include<cstring>
  11. #include<cstdlib>
  12. #include<utility>
  13. #include<iostream>
  14. #include<algorithm>
  15. using namespace std;
  16. typedef long long LL;
  17. typedef pair<int, int> pii;
  18. const int INF = 0x3f3f3f3f;
  19. const int maxn = 3*1e4 + 10;
  20. const int maxm = 10e5 + 10;
  21. int head[maxn], tot = 0, n, m, ans = INF;
  22. int next[maxm], v[maxm], w[maxm];
  23. bool vis[maxm], ok = false, vised = 0;
  24. void add(int a, int b, int c){
  25. v[++tot] = b; w[tot] = c;
  26. next[tot] = head[a];
  27. head[a] = tot;
  28. }
  29. void dfs(int u, int ww){
  30. if(u == 1 && vised){
  31. ok = true;
  32. if(ww < ans) ans = ww;
  33. return;
  34. }
  35. if(u == 1) vised = 1;
  36. for(int i = head[u]; i; i = next[i])
  37. if(!vis[i]){
  38. vis[i] = true;
  39. int ano = i & 1 ? i + 1 : i - 1;
  40. vis[ano] = true;
  41. dfs(v[i], ww + w[i]);
  42. vis[i] = false;
  43. vis[ano] = false;
  44. }
  45. }
  46. int main()
  47. {
  48. freopen("zaw.in", "r", stdin);
  49. freopen("zaw.out", "w", stdout);
  50. cin >> n >> m;
  51. int a, b, c, d;
  52. for(int i = 0; i < m; i++){
  53. scanf("%d%d%d%d", &a, &b, &c, &d);
  54. add(a, b, c);
  55. add(b, a, d);
  56. }
  57. memset(vis, false, sizeof(vis));
  58. dfs(1, 0);
  59. if(ok) cout << ans << endl;
  60. else cout << -1 << endl;
  61. return 0;
  62. }