제출 #608807

#제출 시각아이디문제언어결과실행 시간메모리
608807pakhomoveeGift (IZhO18_nicegift)C++17
30 / 100
370 ms78616 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; int delta; for (int j = 0; j < k; ++j) { pos.push_back(q.top().second); delta = q.top().first; q.pop(); } if (!q.empty()) { delta -= q.top().first - 1; } for (int i : pos) { b[i] += delta; if (b[i] < a[i]) { q.push({ a[i] - b[i], i }); } } act.push_back({ delta, pos }); } if (q.empty()) { cout << act.size() << '\n'; 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) {
      |            ~~~~~~~~~^~~~
nicegift.cpp:32:19: warning: 'delta' may be used uninitialized in this function [-Wmaybe-uninitialized]
   32 |             delta -= q.top().first - 1;
      |             ~~~~~~^~~~~~~~~~~~~~~~~~~~
#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...