Submission #92345

# Submission time Handle Problem Language Result Execution time Memory
92345 2019-01-02T14:33:03 Z Pajaraja Gift (IZhO18_nicegift) C++17
19 / 100
2000 ms 46008 KB
#include <bits/stdc++.h>
using namespace std;
long long gcd(long long a,long long b)
{
	if(a==0) return b;
	return gcd(b%a,a);
}
int main()
{
	long long n,k,cnt=0;
	long long t,sum=0,mi=1000000000000000000LL;
	scanf("%lld%lld",&n,&k);
	priority_queue<pair<long long,int> > pq,pq1;
	for(int i=0;i<n;i++) {scanf("%lld",&t); pq.push(make_pair(t,i+1)); pq1.push(make_pair(t,i+1)); mi=min(mi,t); sum+=t;}
	if(sum%k!=0) {printf("-1"); return 0;}
	while(pq.size()>=k && mi!=pq.top().first)
	{
		stack<pair<long long,int> > st;
		for(int i=0;i<k;i++) {st.push(pq.top()); pq.pop();}
		long long f=st.top().first;
		if(!pq.empty()) f-=pq.top().first;
		for(int i=0;i<k;i++) {st.top().first-=f; if(st.top().first!=0) pq.push(st.top()); mi=min(mi,st.top().first); st.pop();}
		cnt++;
	}
	if(pq.size()%n!=0) {printf("-1"); return 0;}
	if(!pq.empty() && pq.top().first%(k/gcd(n,k))!=0) {printf("-1"); return 0;}
	if(pq.empty()) printf("%lld\n",cnt);
	else printf("%lld\n",cnt+(n*mi)/(k*(mi/(k/gcd(n,k)))));
	while(cnt--)
	{
		stack<pair<long long,int> > st;
		for(int i=0;i<k;i++) {st.push(pq1.top()); pq1.pop();}
		long long f=st.top().first;
		if(!pq1.empty()) f-=pq1.top().first;
		printf("%lld ",f);
		for(int i=0;i<k;i++) {st.top().first-=f; if(st.top().first!=0) pq1.push(st.top()); printf("%d ",st.top().second); st.pop();}
		printf("\n");
	}
	long long f=pq.top().first/(k/gcd(n,k));
	while(pq.size()>=k)
	{
		stack<pair<long long,int> > st;
		for(int i=0;i<k;i++) {st.push(pq.top()); pq.pop();}
		printf("%lld ",f);
		for(int i=0;i<k;i++) {st.top().first-=f; if(st.top().first!=0) pq.push(st.top()); printf("%d ",st.top().second); st.pop();}
		printf("\n");
	}
}

Compilation message

nicegift.cpp: In function 'int main()':
nicegift.cpp:16:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  while(pq.size()>=k && mi!=pq.top().first)
        ~~~~~~~~~^~~
nicegift.cpp:40:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  while(pq.size()>=k)
        ~~~~~~~~~^~~
nicegift.cpp:12:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%lld%lld",&n,&k);
  ~~~~~^~~~~~~~~~~~~~~~~~
nicegift.cpp:14:29: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  for(int i=0;i<n;i++) {scanf("%lld",&t); pq.push(make_pair(t,i+1)); pq1.push(make_pair(t,i+1)); mi=min(mi,t); sum+=t;}
                        ~~~~~^~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 2 ms 256 KB n=4
2 Execution timed out 2078 ms 256 KB Time limit exceeded
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 256 KB n=4
2 Execution timed out 2078 ms 256 KB Time limit exceeded
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 256 KB n=4
2 Execution timed out 2078 ms 256 KB Time limit exceeded
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 605 ms 46008 KB n=1000000
2 Correct 382 ms 29180 KB n=666666
3 Correct 205 ms 16944 KB n=400000
4 Correct 563 ms 26416 KB n=285714
5 Correct 11 ms 1268 KB n=20000
6 Correct 483 ms 21432 KB n=181818
7 Correct 6 ms 880 KB n=10000
8 Correct 62 ms 2296 KB n=6666
9 Correct 3 ms 504 KB n=4000
10 Correct 342 ms 9720 KB n=2857
11 Correct 3 ms 376 KB n=2000
# Verdict Execution time Memory Grader output
1 Correct 2 ms 256 KB n=4
2 Execution timed out 2078 ms 256 KB Time limit exceeded
3 Halted 0 ms 0 KB -