Submission #826065

#TimeUsernameProblemLanguageResultExecution timeMemory
826065LittleCubeThousands Islands (IOI22_islands)C++17
1.75 / 100
28 ms4268 KiB
#include "islands.h" #include <bits/stdc++.h> #define ll long long #define pii pair<int, int> #define F first #define S second using namespace std; namespace { int K; vector<int> go, back; } variant<bool, vector<int>> find_journey(int N, int M, vector<int> U, vector<int> V) { for (int i = 0; i < M; i++) if (U[i] == 0) go.emplace_back(i); else back.emplace_back(i); vector<int> sol; if(go.size() < 2 || back.size() < 2) return false; return vector<int>{go[0], back[0], go[1], back[1], back[0], go[0], back[1], go[1]}; }

Compilation message (stderr)

islands.cpp:11:9: warning: '{anonymous}::K' defined but not used [-Wunused-variable]
   11 |     int K;
      |         ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...