제출 #608802

#제출 시각아이디문제언어결과실행 시간메모리
608802pakhomoveeGift (IZhO18_nicegift)C++17
0 / 100
402 ms78720 KiB
#include <iostream> #include <vector> #include <string> #include <iomanip> #include <algorithm> #include <set> #include <numeric> #include <queue> using namespace std; int32_t main() { ios_base::sync_with_stdio(false); cin.tie(0); int n, k; cin >> n >> k; vector<int> a(n); for (int& i : a) cin >> i; vector<int> b(n, 0); priority_queue<pair<int, int>> q; vector<pair<int, vector<int>>> act; for (int i = 0; i < n; ++i) q.push({ a[i], i }); while (q.size() >= k) { vector<int> pos; for (int j = 0; j < k; ++j) { pos.push_back(q.top().second); q.pop(); } for (int i : pos) { ++b[i]; if (b[i] < a[i]) { q.push({ a[i] - b[i], i }); } } act.push_back({ 1, pos }); } if (q.empty()) { for (pair<int, vector<int>> x : act) { cout << x.first << ' '; for (int j : x.second) { cout << j + 1 << ' '; } cout << '\n'; } } else { cout << -1; } }

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

nicegift.cpp: In function 'int32_t main()':
nicegift.cpp:23:21: warning: comparison of integer expressions of different signedness: 'std::priority_queue<std::pair<int, int> >::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   23 |     while (q.size() >= 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...