Submission #209533

#TimeUsernameProblemLanguageResultExecution timeMemory
209533model_codeIsland (NOI18_island)C++17
100 / 100
101 ms2812 KiB
#include <bits/stdc++.h> using namespace std; const int MAXN = 200004; int N, M, cnt[MAXN], fac[MAXN]; int main() { scanf("%d%d", &N, &M); for (int i = 0, u, v; i < N+M-1; ++i) { scanf("%d%d", &u, &v); if (cnt[u-1]++ > 1) printf("%d 1\n", cnt[u-1]-1); if (cnt[v-1]++ > 1) printf("%d 1\n", cnt[v-1]-1); } }

Compilation message (stderr)

island.cpp: In function 'int main()':
island.cpp:6:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d%d", &N, &M);
  ~~~~~^~~~~~~~~~~~~~~~
island.cpp:8:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d%d", &u, &v);
   ~~~~~^~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...