제출 #429718

#제출 시각아이디문제언어결과실행 시간메모리
429718schseHandcrafted Gift (IOI20_gift)C++17
25 / 100
186 ms12996 KiB
#include "gift.h" #include <bits/stdc++.h> using namespace std; #ifndef EVAL #include "grader.cpp" #endif int construct(int n, int r, std::vector<int> a, std::vector<int> b, std::vector<int> x) { int sb = 0; for (int i : x) sb |= i; if (sb == 1) { std::string s(n, 'R'); craft(s); return 1; } else if (sb == 2) { for (int i = 0; i < a.size(); i++) if (a[i] == b[i]) return 0; std::string s(n, 'R'); for (int i = 0; i < n; i++) s[i] = i % 2 ? 'R' : 'B'; craft(s); return 1; } else { vector<int> prefix(n); iota(prefix.begin(), prefix.end(), 0); for (int i = 0; i < a.size(); i++) //update single color { if (x[i] == 1) { for (int e = a[i] + 1; e < b[i]; e++) prefix[e] = prefix[a[i]]; for (int e = b[i]; e < n; e++) prefix[e] -= b[i] - a[i]; } } for (int i = 0; i < a.size(); i++) //check wetherpossible { if (x[i] == 2) { if (prefix[b[i]] - prefix[a[i]] < 1) return 0; } } std::string s(n, 'R'); for (int i = 0; i < n; i++) s[i] = prefix[i] % 2 ? 'R' : 'B'; craft(s); return 1; } }

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

gift.cpp: In function 'int construct(int, int, std::vector<int>, std::vector<int>, std::vector<int>)':
gift.cpp:22:27: 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 = 0; i < a.size(); i++)
      |                         ~~^~~~~~~~~~
gift.cpp:35:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   35 |         for (int i = 0; i < a.size(); i++) //update single color
      |                         ~~^~~~~~~~~~
gift.cpp:46:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   46 |         for (int i = 0; i < a.size(); i++) //check wetherpossible
      |                         ~~^~~~~~~~~~
#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...