답안 #645680

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
645680 2022-09-27T16:07:08 Z mentaldora Gift (IZhO18_nicegift) C++14
7 / 100
14 ms 2012 KB
#pragma comment(linker, "/stack:200000000")
#pragma GCC optimize("Ofast,unroll-loops")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2")
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
#define sz size()
#define mk make_pair
#define ff first
#define pll pair<ll, ll>
#define pii pair<int, int>
#define ull unsigned long long
#define ss second
#define all(x) x.begin(), x.end()
#define Resh cin>>tt;while(tt--)solve();
#define yes cout <<"Yes"<<"\n";
#define no cout <<"No"<<"\n";
#define fast ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0);
#define left(v) v + v
#define right(v) v + v + 1
const long double PI = acos(-1);
const long long n6 = 1e6 + 10;
const long long n5 = 1e5+1;
const long long n4 = 1e4 + 10;
const long long inf = 1e9;
const long long mod = 16714589;
const int BL = 60090;
const long long MAXN = 1e5+5;

ll a[n5];
multiset<pll> ms;
vector<vector<pll>> ans;
main() {
    fast
    ll n, k, cnt=0;
    cin >> n >> k;
    for(int i = 1;i <= n;i++) {
        cin >> a[i];
        cnt+=a[i];
    }
    if(cnt % k) {
        cout << -1;
        return 0;
    }
    for(int i = 1;i <= n;i++) {
        ms.insert(mk(a[i], i));
    }
    while(ms.sz >= k) {
        vector<pll> v;
        while(v.sz < k) {
            pll p = *ms.rbegin();
            p.ff--;
            v.pb(p);
            ms.erase(--ms.end());
        }
        for(auto c : v) {
            if(c.ff) {
                ms.insert(c);
            }
        }
        ans.pb(v);
    }
    cout << ans.size() <<'\n';
    for(auto c : ans) {
        cout << "1 ";
        for(auto t : c) {
            cout << t.ss << " ";
        }
        cout <<'\n';
    }
}

Compilation message

nicegift.cpp:1: warning: ignoring '#pragma comment ' [-Wunknown-pragmas]
    1 | #pragma comment(linker, "/stack:200000000")
      | 
nicegift.cpp:34:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   34 | main() {
      | ^~~~
nicegift.cpp: In function 'int main()':
nicegift.cpp:49:17: warning: comparison of integer expressions of different signedness: 'std::multiset<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
   49 |     while(ms.sz >= k) {
      |           ~~~~~~^~~~
nicegift.cpp:51:20: warning: comparison of integer expressions of different signedness: 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
   51 |         while(v.sz < k) {
      |               ~~~~~^~~
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 336 KB n=4
2 Correct 1 ms 212 KB n=3
3 Correct 0 ms 212 KB n=3
4 Correct 1 ms 212 KB n=4
5 Correct 1 ms 212 KB n=4
6 Correct 0 ms 328 KB n=2
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 336 KB n=4
2 Correct 1 ms 212 KB n=3
3 Correct 0 ms 212 KB n=3
4 Correct 1 ms 212 KB n=4
5 Correct 1 ms 212 KB n=4
6 Correct 0 ms 328 KB n=2
7 Correct 1 ms 212 KB n=5
8 Incorrect 5 ms 1108 KB Not all heaps are empty in the end
9 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 336 KB n=4
2 Correct 1 ms 212 KB n=3
3 Correct 0 ms 212 KB n=3
4 Correct 1 ms 212 KB n=4
5 Correct 1 ms 212 KB n=4
6 Correct 0 ms 328 KB n=2
7 Correct 1 ms 212 KB n=5
8 Incorrect 5 ms 1108 KB Not all heaps are empty in the end
9 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 14 ms 2012 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 336 KB n=4
2 Correct 1 ms 212 KB n=3
3 Correct 0 ms 212 KB n=3
4 Correct 1 ms 212 KB n=4
5 Correct 1 ms 212 KB n=4
6 Correct 0 ms 328 KB n=2
7 Correct 1 ms 212 KB n=5
8 Incorrect 5 ms 1108 KB Not all heaps are empty in the end
9 Halted 0 ms 0 KB -