Submission #66750427


Source Code Expand

Copy
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int INF = 1<<30;
struct Edge {
int to, weight;
};
int main() {
int n, m;
cin >> n >> m;
vector<vector<Edge>> graph(n + 1);
vector<int> basis;
for (int i = 0; i < m; i++) {
int a, b, w;
cin >> a >> b >> w;
graph[a].push_back({b, w});
}
vector<int> dist(n + 1, INF);
queue<pair<int, int>> q;
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int INF = 1<<30;

struct Edge {
    int to, weight;
  };

int main() {
    int n, m;
    cin >> n >> m;
    vector<vector<Edge>> graph(n + 1);
    vector<int> basis;
    for (int i = 0; i < m; i++) {
        int a, b, w;
        cin >> a >> b >> w;
        graph[a].push_back({b, w});
      }
    vector<int> dist(n + 1, INF);
    queue<pair<int, int>> q;
    dist[1] = 0;
    q.push({1, 0});
    while (!q.empty()) {
        auto [v, d] = q.front(); q.pop();
        for (auto &e : graph[v]) {
            int to = e.to;
            int nd = d ^ e.weight;
            if (dist[to] > nd) {
                dist[to] = nd;
                q.push({to, nd});
              }
            else {
                int x = nd ^ dist[to];
                for (int b : basis) x = min(x, x ^ b);
                if (x > 0) basis.push_back(x);
              }
          }
      }
    int x = dist[n];
    if (x == INF) cout << -1 << endl;
    else {
        for (int b : basis) x = min(x, x ^ b);
        cout << x << endl;
      }
    return 0;
  }

Submission Info

Submission Time
Task D - XOR Shortest Walk
User ecapsotiuy
Language C++ 20 (gcc 12.2)
Score 0
Code Size 1156 Byte
Status WA
Exec Time 2 ms
Memory 3736 KiB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 400
Status
AC × 3
AC × 31
WA × 2
Set Name Test Cases
Sample sample_01.txt, sample_02.txt, sample_03.txt
All hand_01.txt, hand_02.txt, hand_03.txt, hand_04.txt, hand_05.txt, hand_06.txt, hand_07.txt, hand_08.txt, random_01.txt, random_02.txt, random_03.txt, random_04.txt, random_05.txt, random_06.txt, random_07.txt, random_08.txt, random_09.txt, random_10.txt, random_11.txt, random_12.txt, random_13.txt, random_14.txt, random_15.txt, random_16.txt, random_17.txt, random_18.txt, random_19.txt, random_20.txt, random_21.txt, random_22.txt, sample_01.txt, sample_02.txt, sample_03.txt
Case Name Status Exec Time Memory
hand_01.txt AC 1 ms 3536 KiB
hand_02.txt AC 1 ms 3540 KiB
hand_03.txt AC 1 ms 3484 KiB
hand_04.txt AC 1 ms 3488 KiB
hand_05.txt AC 1 ms 3532 KiB
hand_06.txt WA 1 ms 3500 KiB
hand_07.txt AC 1 ms 3540 KiB
hand_08.txt WA 1 ms 3540 KiB
random_01.txt AC 1 ms 3540 KiB
random_02.txt AC 1 ms 3572 KiB
random_03.txt AC 1 ms 3412 KiB
random_04.txt AC 1 ms 3520 KiB
random_05.txt AC 1 ms 3540 KiB
random_06.txt AC 1 ms 3488 KiB
random_07.txt AC 1 ms 3540 KiB
random_08.txt AC 1 ms 3520 KiB
random_09.txt AC 1 ms 3488 KiB
random_10.txt AC 1 ms 3536 KiB
random_11.txt AC 1 ms 3676 KiB
random_12.txt AC 1 ms 3520 KiB
random_13.txt AC 1 ms 3548 KiB
random_14.txt AC 1 ms 3508 KiB
random_15.txt AC 1 ms 3544 KiB
random_16.txt AC 1 ms 3428 KiB
random_17.txt AC 2 ms 3536 KiB
random_18.txt AC 1 ms 3736 KiB
random_19.txt AC 1 ms 3464 KiB
random_20.txt AC 1 ms 3512 KiB
random_21.txt AC 1 ms 3520 KiB
random_22.txt AC 1 ms 3584 KiB
sample_01.txt AC 1 ms 3604 KiB
sample_02.txt AC 1 ms 3540 KiB
sample_03.txt AC 1 ms 3496 KiB


2025-06-16 (Mon)
13:10:14 +09:00