QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#688419#2178. Robotliuziao24 713ms217180kbC++234.9kb2024-10-30 08:52:282024-10-30 08:52:28

Judging History

你现在查看的是最新测评结果

  • [2024-10-30 08:52:28]
  • 评测
  • 测评结果:24
  • 用时:713ms
  • 内存:217180kb
  • [2024-10-30 08:52:28]
  • 提交

answer

#include <bits/stdc++.h>

// #define int int64_t

const int kMaxN = 1e5 + 5, kMaxM = 2e5 + 5;

int n, m, cnt;
int u[kMaxM], v[kMaxM], c[kMaxM], w[kMaxM], idx[kMaxN];
std::unordered_map<int, int> id[kMaxN];
std::unordered_map<int, int64_t> val[kMaxN];
std::vector<std::tuple<int, int, int, int64_t>> G[kMaxM * 5][2][2]; // [to, o1, o2, w]

// int cost(int a, int o1, int b, int o2) {
//   if (o2) return w[b];
//   int u, ret;
//   if (::u[a] == ::u[b] || ::u[a] == ::v[b]) u = ::u[a];
//   else u = ::v[a];
//   if (o1 && c[a] == c[b]) return mp[u][c[b]] - w[a] - w[b];
//   else return mp[u][c[b]] - w[b];
// }

void dijkstra() {
  static int64_t dis[kMaxM * 5][2][2];
  static bool vis[kMaxM * 5][2][2];
  for (int i = 1; i <= cnt; ++i)
    for (int o1 = 0; o1 < 2; ++o1)
      for (int o2 = 0; o2 < 2; ++o2)
        dis[i][o1][o2] = 1e18;
  std::priority_queue<std::tuple<int64_t, int, int, int>> q;
  for (int i = 1; i <= m; ++i) {
    if (u[i] == 1) {
      dis[i][0][0] = val[1][c[i]] - w[i];
      dis[i][0][1] = w[i];
      q.emplace(-dis[i][0][0], i, 0, 0);
      q.emplace(-dis[i][0][1], i, 0, 1);
    } else if (v[i] == 1) {
      dis[i][1][0] = val[1][c[i]] - w[i];
      dis[i][1][1] = w[i];
      q.emplace(-dis[i][1][0], i, 1, 0);
      q.emplace(-dis[i][1][1], i, 1, 1);
    }
  }
  for (; !q.empty();) {
    auto [d, u, o1, o2] = q.top(); q.pop();
    if (vis[u][o1][o2]) continue;
    vis[u][o1][o2] = 1;
    // std::cerr << (int64_t)dis[u][o1][o2] << '\n';
    for (auto [v, o3, o4, w] : G[u][o1][o2]) {
      if (dis[v][o3][o4] > dis[u][o1][o2] + w) {
        dis[v][o3][o4] = dis[u][o1][o2] + w;
        q.emplace(-dis[v][o3][o4], v, o3, o4);
      }
    }
  }
  int64_t ret = 1e18;
  for (int i = 1; i <= m; ++i) {
    for (int o1 = 0; o1 < 2; ++o1) {
      for (int o2 = 0; o2 < 2; ++o2) {
        if ((o1 ? u[i] : v[i]) == n) ret = std::min(ret, dis[i][o1][o2]);
      }
    }
  }
  if (ret <= 1e15) std::cout << ret << '\n';
  else std::cout << "-1\n";
}

void spfa() {
  static int64_t dis[kMaxM * 5][2][2];
  static bool inq[kMaxM * 5][2][2];
  for (int i = 1; i <= cnt; ++i)
    for (int o1 = 0; o1 < 2; ++o1)
      for (int o2 = 0; o2 < 2; ++o2)
        dis[i][o1][o2] = 1e18;
  std::queue<std::tuple<int, int, int>> q;
  for (int i = 1; i <= m; ++i) {
    if (u[i] == 1) {
      dis[i][0][0] = val[1][c[i]] - w[i];
      dis[i][0][1] = w[i];
      q.emplace(i, 0, 0);
      q.emplace(i, 0, 1);
      inq[i][0][0] = inq[i][0][1] = 1;
    } else if (v[i] == 1) {
      dis[i][1][0] = val[1][c[i]] - w[i];
      dis[i][1][1] = w[i];
      q.emplace(i, 1, 0);
      q.emplace(i, 1, 1);
      inq[i][1][0] = inq[i][1][1] = 1;
    }
  }
  for (; !q.empty();) {
    auto [u, o1, o2] = q.front(); q.pop();
    inq[u][o1][o2] = 0;
    // std::cerr << (int64_t)dis[u][o1][o2] << '\n';
    for (auto [v, o3, o4, w] : G[u][o1][o2]) {
      if (dis[v][o3][o4] > dis[u][o1][o2] + w) {
        dis[v][o3][o4] = dis[u][o1][o2] + w;
        if (!inq[v][o3][o4]) {
          q.emplace(v, o3, o4);
          inq[v][o3][o4] = 1;
        }
      }
    }
  }
  int64_t ret = 1e18;
  for (int i = 1; i <= m; ++i) {
    for (int o1 = 0; o1 < 2; ++o1) {
      for (int o2 = 0; o2 < 2; ++o2) {
        if ((o1 ? u[i] : v[i]) == n) ret = std::min(ret, dis[i][o1][o2]);
      }
    }
  }
  if (ret <= 1e15) std::cout << ret << '\n';
  else std::cout << "-1\n";
}

void dickdreamer() {
  std::cin >> n >> m;
  cnt = m;
  for (int i = 1; i <= n; ++i) idx[i] = ++cnt;
  for (int i = 1; i <= m; ++i) {
    std::cin >> u[i] >> v[i] >> c[i] >> w[i];
    val[u[i]][c[i]] += w[i], val[v[i]][c[i]] += w[i];
    if (!id[u[i]].count(c[i])) id[u[i]][c[i]] = ++cnt;
    if (!id[v[i]].count(c[i])) id[v[i]][c[i]] = ++cnt;
  }
  for (int i = 1; i <= m; ++i) {
    int a = id[u[i]][c[i]], b = id[v[i]][c[i]];
    G[i][0][0].emplace_back(idx[v[i]], 0, 0, 0);
    G[i][0][1].emplace_back(idx[v[i]], 0, 0, 0);
    G[i][0][1].emplace_back(id[v[i]][c[i]], 0, 0, -w[i]);

    G[i][1][0].emplace_back(idx[u[i]], 0, 0, 0);
    G[i][1][1].emplace_back(idx[u[i]], 0, 0, 0);
    G[i][1][1].emplace_back(id[u[i]][c[i]], 0, 0, -w[i]);

    G[idx[u[i]]][0][0].emplace_back(i, 0, 0, val[u[i]][c[i]] - w[i]);
    G[idx[u[i]]][0][0].emplace_back(i, 0, 1, w[i]);

    G[idx[v[i]]][0][0].emplace_back(i, 1, 0, val[v[i]][c[i]] - w[i]);
    G[idx[v[i]]][0][0].emplace_back(i, 1, 1, w[i]);

    G[id[u[i]][c[i]]][0][0].emplace_back(i, 0, 0, val[u[i]][c[i]] - w[i]);
    G[id[v[i]][c[i]]][0][0].emplace_back(i, 1, 0, val[v[i]][c[i]] - w[i]);
  }
  dijkstra();
  // spfa();
}

int32_t main() {
#ifdef ORZXKR
  freopen("in.txt", "r", stdin);
  freopen("out.txt", "w", stdout);
#endif
  std::ios::sync_with_stdio(0), std::cin.tie(0), std::cout.tie(0);
  int T = 1;
  // std::cin >> T;
  while (T--) dickdreamer();
  // std::cerr << 1.0 * clock() / CLOCKS_PER_SEC << "s\n";
  return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 34
Accepted
time: 3ms
memory: 24044kb

input:

2 1
1 2 1 10

output:

0

result:

ok single line: '0'

Test #2:

score: 34
Accepted
time: 2ms
memory: 22216kb

input:

8 1
5 6 1 7

output:

-1

result:

ok single line: '-1'

Test #3:

score: 34
Accepted
time: 8ms
memory: 22016kb

input:

8 19
4 8 15 5
7 8 15 6
1 4 15 6
3 4 2 10
2 7 15 10
5 6 2 10
1 7 2 3
4 5 15 7
1 6 15 6
2 5 2 6
1 8 15 2
1 2 15 9
5 7 2 5
3 8 2 5
4 7 2 6
6 7 15 8
3 7 15 6
2 8 2 1
5 8 15 6

output:

2

result:

ok single line: '2'

Test #4:

score: 34
Accepted
time: 7ms
memory: 22008kb

input:

4 6
1 2 1 7
3 4 1 10
2 3 2 5
2 4 1 4
1 4 6 2
1 3 1 2

output:

0

result:

ok single line: '0'

Test #5:

score: 34
Accepted
time: 4ms
memory: 22124kb

input:

64 106
7 46 100 641441921
4 22 92 909042053
27 46 100 185644091
52 54 100 333473988
21 41 69 747879553
23 45 24 121784836
16 23 69 538978180
15 42 92 403583091
49 60 69 112127397
44 48 21 733685727
18 40 92 287239281
3 30 48 498139743
21 25 24 281665265
13 24 69 315527284
12 35 21 100990101
33 56 10...

output:

-1

result:

ok single line: '-1'

Test #6:

score: 34
Accepted
time: 8ms
memory: 22100kb

input:

10 45
6 7 29 19322896
6 8 29 826842878
5 9 29 229755065
1 6 29 49301462
4 10 29 356862039
3 7 29 377906409
8 10 29 877820670
4 8 29 150486169
1 10 29 291057766
1 5 29 982043864
1 3 29 126557279
5 6 29 721959799
3 10 29 636909401
1 7 29 772752473
5 8 29 523364181
7 9 29 250673970
2 6 29 417264209
2 4...

output:

255671682

result:

ok single line: '255671682'

Test #7:

score: 34
Accepted
time: 4ms
memory: 22632kb

input:

71 788
5 24 146 614916874
56 61 567 467226384
16 44 275 490241032
14 25 567 779488700
19 42 262 524833651
6 19 567 912315689
8 21 774 326632848
46 62 675 296672130
27 32 715 104878301
13 47 675 546642528
18 68 675 349712771
8 43 146 305351688
13 58 567 776051722
49 63 601 454628166
30 43 715 7695855...

output:

46083838

result:

ok single line: '46083838'

Test #8:

score: 34
Accepted
time: 4ms
memory: 22388kb

input:

55 443
11 21 307 732223755
32 42 307 182136903
47 48 346 925071240
45 53 307 225221704
1 45 307 807617287
28 46 307 644657251
2 42 346 807672874
39 42 346 173126332
11 50 346 105073586
48 53 346 363756204
19 27 346 749462761
8 20 346 838034581
28 31 307 183749842
28 53 346 909041858
33 50 346 364806...

output:

342534314

result:

ok single line: '342534314'

Test #9:

score: 34
Accepted
time: 12ms
memory: 23844kb

input:

999 1988
153 528 1690 1
1 867 1158 1
481 785 1741 1
226 528 203 1
356 481 1957 1
278 481 716 1
168 528 612 1
1 140 489 1
528 533 446 1
4 528 1715 1
481 698 1350 1
35 528 1658 1
528 601 1345 1
24 481 559 1
524 528 88 1
1 606 1547 1
481 493 1017 1
165 528 1685 1
481 849 1847 1
528 711 1464 1
1 663 222...

output:

3

result:

ok single line: '3'

Test #10:

score: 34
Accepted
time: 12ms
memory: 23724kb

input:

999 1988
328 983 1573 1
130 468 1140 1
44 983 210 1
15 983 1848 1
517 983 1451 1
1 131 563 1
1 209 182 1
130 793 1295 1
130 947 1295 1
130 680 1295 1
130 214 1295 1
584 983 567 1
726 983 1019 1
130 456 1295 1
198 575 1295 1
1 6 283 1
200 575 1295 1
205 575 1295 1
1 399 1128 1
130 589 1510 1
923 983 ...

output:

3

result:

ok single line: '3'

Test #11:

score: 34
Accepted
time: 3ms
memory: 23552kb

input:

1000 1990
528 730 1843 1
523 730 1843 1
124 894 1843 1
224 730 1843 1
124 617 1843 1
679 730 1843 1
124 913 1843 1
488 730 1843 1
493 730 1843 1
730 748 1843 1
730 959 1843 1
124 437 1843 1
124 187 1843 1
124 332 1843 1
124 279 1843 1
124 961 1843 1
124 744 1843 1
203 730 1843 1
723 730 1843 1
730 9...

output:

3

result:

ok single line: '3'

Test #12:

score: 0
Wrong Answer
time: 5ms
memory: 23660kb

input:

998 1658
296 805 151 1
141 805 151 1
218 983 151 2
1 608 151 2
1 49 151 2
740 805 151 1
225 805 151 1
218 420 151 2
87 266 151 1
218 527 151 2
1 374 151 2
218 905 151 2
699 744 151 1
660 805 151 1
836 889 151 1
62 805 151 1
184 218 151 2
95 457 151 1
218 985 151 2
218 621 151 2
1 577 151 2
587 981 1...

output:

667

result:

wrong answer 1st lines differ - expected: '666', found: '667'

Subtask #2:

score: 24
Accepted

Test #21:

score: 24
Accepted
time: 212ms
memory: 89872kb

input:

25437 78923
921 9998 30945 1
5452 13736 24464 1
11746 24238 24464 1
10875 12958 24464 1
12267 20617 30945 1
3738 16549 35589 1
16223 16940 35589 1
1303 23059 24464 1
12424 21853 24464 1
11198 20674 35589 1
15645 19099 30945 1
8860 9441 24464 1
3609 15160 35589 1
22638 23472 24464 1
766 8991 35589 1
...

output:

5

result:

ok single line: '5'

Test #22:

score: 24
Accepted
time: 79ms
memory: 54972kb

input:

15761 34565
6553 7857 4268 1
1139 8149 4268 1
4136 9004 4268 1
3810 8194 27009 1
3005 10547 9061 1
3025 15018 27009 1
5735 6627 9061 1
2337 12263 9061 1
4260 8046 9061 1
12549 14043 4268 1
6992 11456 4268 1
833 4225 4268 1
1609 9603 4268 1
2588 9564 9061 1
2361 8162 27009 1
10250 10706 4268 1
6878 1...

output:

6

result:

ok single line: '6'

Test #23:

score: 24
Accepted
time: 337ms
memory: 118120kb

input:

16917 133722
10190 12792 75746 1
4125 15443 75746 1
163 5884 29061 1
2756 10488 29061 1
7080 9199 75746 1
1463 4211 75746 1
5115 7366 29061 1
10308 11662 75746 1
1196 14025 29061 1
2863 14178 75746 1
9795 13347 75746 1
13003 13888 75746 1
5035 16673 75746 1
1356 15130 75746 1
13068 16408 29061 1
349...

output:

3

result:

ok single line: '3'

Test #24:

score: 24
Accepted
time: 135ms
memory: 68060kb

input:

25063 52020
145 18915 3816 1
5378 20731 3816 1
17344 23239 21514 1
2212 6628 3816 1
3462 15824 3816 1
1660 15356 21514 1
7250 18036 21514 1
8600 17595 21514 1
1446 12372 3816 1
10292 22860 3816 1
6562 18473 21514 1
10903 20797 21514 1
5932 8895 21514 1
5310 8230 3816 1
15875 24245 21514 1
3521 3908 ...

output:

5

result:

ok single line: '5'

Test #25:

score: 24
Accepted
time: 713ms
memory: 217180kb

input:

99999 199988
4731 83366 89897 1
80907 83366 155057 1
1 15876 82022 1
83366 86520 193680 1
15678 83366 180045 1
31911 59651 263 1
1 61854 122596 1
83366 99983 63626 1
67027 83366 28130 1
19313 83366 74260 1
59651 87942 97680 1
1 98039 115849 1
53600 83366 150525 1
26771 83366 120178 1
80859 83366 537...

output:

3

result:

ok single line: '3'

Test #26:

score: 24
Accepted
time: 664ms
memory: 216320kb

input:

99999 199988
11815 64227 56577 1
11815 60572 63128 1
1 78695 24435 1
12018 22361 50088 1
11815 67504 38323 1
12018 19012 107473 1
11815 63558 63128 1
71961 74024 63128 1
11815 63837 63128 1
11815 35595 63128 1
12018 57914 87572 1
12018 54264 88988 1
12018 66879 117942 1
1 49113 107309 1
12018 81198 ...

output:

3

result:

ok single line: '3'

Test #27:

score: 24
Accepted
time: 520ms
memory: 184520kb

input:

100000 199990
37990 50087 155359 1
22611 37990 155359 1
4362 89790 155359 1
4362 96346 155359 1
4362 54455 155359 1
37990 93050 155359 1
31313 37990 155359 1
36462 37990 155359 1
4362 14580 155359 1
1140 4362 155359 1
4362 70772 155359 1
4362 53585 155359 1
37990 49713 155359 1
4362 47065 155359 1
3...

output:

3

result:

ok single line: '3'

Test #28:

score: 24
Accepted
time: 534ms
memory: 178176kb

input:

100000 199839
11865 45830 161515 1
46988 77944 161515 1
37628 62851 161515 1
21213 29495 161515 1
79467 91266 161515 1
42910 57123 161515 1
83278 89082 161515 1
17867 67021 161515 1
29361 92753 161515 1
32817 45699 161515 1
90648 93260 161515 1
14450 54441 161515 1
27147 85147 161515 1
11506 24762 1...

output:

12347

result:

ok single line: '12347'

Test #29:

score: 24
Accepted
time: 551ms
memory: 177992kb

input:

100000 200000
19447 99453 101188 1
4820 52736 101188 1
51887 94783 101188 1
20762 99520 101188 1
4745 89605 101188 1
49080 66338 101188 1
24656 26963 101188 1
64986 82044 101188 1
22890 89840 101188 1
483 35061 101188 1
72709 85911 101188 1
7597 76399 101188 1
17356 66290 101188 1
73758 94642 101188...

output:

1250

result:

ok single line: '1250'

Test #30:

score: 24
Accepted
time: 342ms
memory: 132224kb

input:

53901 119501
10291 14784 53288 1
4583 13856 53288 1
23363 33647 101468 1
3518 53845 101468 1
36419 38250 112685 1
3198 19748 112685 1
26033 32687 112685 1
14393 44922 112685 1
25180 38428 53288 1
23010 26128 112685 1
2403 51848 101468 1
12179 20699 101468 1
1420 27014 53288 1
35027 39700 112685 1
20...

output:

-1

result:

ok single line: '-1'

Test #31:

score: 24
Accepted
time: 159ms
memory: 112452kb

input:

83934 95347
43947 77849 83564 1
50335 74178 83564 1
5042 27838 83564 1
63088 79495 83564 1
3599 48287 83564 1
35299 75948 83564 1
40480 56081 83564 1
19327 53910 83564 1
9451 26020 83564 1
23126 64107 83564 1
26565 67741 83564 1
13340 22355 83564 1
1642 40258 83564 1
47323 69242 83564 1
41578 61309 ...

output:

-1

result:

ok single line: '-1'

Subtask #3:

score: 0
Skipped

Dependency #1:

0%