Submission #948954

#TimeUsernameProblemLanguageResultExecution timeMemory
948954IBory라멘 (JOI14_ramen)C++17
100 / 100
1 ms600 KiB
#include "ramen.h" #include <bits/stdc++.h> using namespace std; void Ramen(int N) { if (N == 1) { Answer(0, 0); return; } vector<int> L, R; for (int i = 0; i < N; i += 2) { if (i + 1 == N) break; int n = Compare(i, i + 1); (n > 0 ? R : L).push_back(i); (n > 0 ? L : R).push_back(i + 1); } if (N & 1) L.push_back(N - 1), R.push_back(N - 1); int a = L[0], b = R[0]; for (int i = 1; i < L.size(); ++i) if (Compare(a, L[i]) > 0) a = L[i]; for (int i = 1; i < R.size(); ++i) if (Compare(R[i], b) > 0) b = R[i]; Answer(a, b); }

Compilation message (stderr)

ramen.cpp: In function 'void Ramen(int)':
ramen.cpp:21:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   21 |  for (int i = 1; i < L.size(); ++i) if (Compare(a, L[i]) > 0) a = L[i];
      |                  ~~^~~~~~~~~~
ramen.cpp:22:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   22 |  for (int i = 1; i < R.size(); ++i) if (Compare(R[i], b) > 0) b = R[i];
      |                  ~~^~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...