제출 #444744

#제출 시각아이디문제언어결과실행 시간메모리
444744ics0503Chameleon's Love (JOI20_chameleon)C++17
0 / 100
54 ms292 KiB
#include "chameleon.h" #include <vector> using namespace std; void validation(int n, int i, int j) { vector<int>qr; for (int p = 1; p <= 2 * n; p++) { if (i == p || j == p)continue; qr.push_back(p); } int Q = Query(qr); if (Q != n) Answer(i, j); } void S4(int who, vector<int>Y,int n) { int sz = Y.size(), i, j; if (sz == 1) { validation(n, who, Y[0]); return; } vector<int>L, R; for (i = 0; i < sz / 2; i++)L.push_back(Y[i]); for (i = sz/2; i < sz; i++)R.push_back(Y[i]); L.push_back(who); R.push_back(who); int a = Query(L); int b = Query(R); L.pop_back(); R.pop_back(); if (a != L.size() + 1)S4(who, L, n); if (b != R.size() + 1)S4(who, R, n); } void Solve(int n) { int i, j; for (i = 1; i <= n; i++) { vector<int>Y; for (j = n + 1; j <= n + n; j++)Y.push_back(j); S4(i, Y, n); } }

컴파일 시 표준 에러 (stderr) 메시지

chameleon.cpp: In function 'void S4(int, std::vector<int>, int)':
chameleon.cpp:28:8: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   28 |  if (a != L.size() + 1)S4(who, L, n);
      |      ~~^~~~~~~~~~~~~~~
chameleon.cpp:29:8: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   29 |  if (b != R.size() + 1)S4(who, R, n);
      |      ~~^~~~~~~~~~~~~~~
chameleon.cpp:16:24: warning: unused variable 'j' [-Wunused-variable]
   16 |  int sz = Y.size(), i, j;
      |                        ^
#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...