Submission #338537

#TimeUsernameProblemLanguageResultExecution timeMemory
338537boykutGift (IZhO18_nicegift)C++14
7 / 100
321 ms30800 KiB
#include <bits/stdc++.h>

using namespace std;

signed main() {
   ios::sync_with_stdio(0);
   cin.tie(0);
   int n, k;
   cin >> n >> k;
   vector <int> a(n);
   for (int i = 0; i < n; i++) {
      cin >> a[i];
   }
   priority_queue < pair<int, int> > q;
   for (int i = 0; i < n; i++) {
      q.push({a[i], 1+i});
   }
   if (k != 2) return 0;
   vector<tuple<int,int,int>> res;
   while (!q.empty()) {
      if (q.size() >= 2) {
         auto a = q.top(); q.pop();
         auto b = q.top(); q.pop();
         res.push_back(make_tuple(b.first, a.second, b.second));
         if (a.first > b.first)
            q.push({a.first-b.first, a.second});
      } else if (q.size() == 1) {
         return cout << "-1\n", 0;
      }
   }
   cout << res.size() << '\n';
   for (int i = 0; i < res.size(); i++) {
      cout << get<0>(res[i]) << ' ' << get<1>(res[i]) << ' ' << get<2>(res[i]) << '\n';
   }
   
   return 0;
}

Compilation message (stderr)

nicegift.cpp: In function 'int main()':
nicegift.cpp:32:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::tuple<int, int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   32 |    for (int i = 0; i < res.size(); i++) {
      |                    ~~^~~~~~~~~~~~
#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...