Submission #92329

# Submission time Handle Problem Language Result Execution time Memory
92329 2019-01-02T13:51:19 Z Pajaraja Gift (IZhO18_nicegift) C++17
49 / 100
2000 ms 45892 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;
	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)); sum+=t;}
	if(sum<=100000)
	{
	while(pq.size()>=k)
	{
		stack<pair<int,int> > st;
		for(int i=0;i<k;i++) {st.push(pq.top()); pq.pop();}
		for(int i=0;i<k;i++) {st.top().first--; if(st.top().first!=0) pq.push(st.top()); st.pop();}
		cnt++;
	}
	if(!pq.empty()) {printf("-1"); return 0;}
	printf("%lld\n",cnt);
	while(pq1.size()>=k)
	{
		stack<pair<int,int> > st;
		printf("1 ");
		for(int i=0;i<k;i++) {st.push(pq1.top()); pq1.pop();}
		for(int i=0;i<k;i++) {st.top().first--; if(st.top().first!=0) pq1.push(st.top()); printf("%d ",st.top().second); st.pop();}
		printf("\n");
	}
	}
	else
	{
	if(pq.top().first%(k/gcd(n,k))!=0) {printf("-1"); return 0;}
	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();}
		for(int i=0;i<k;i++) {st.top().first-=f; if(st.top().first!=0) pq.push(st.top()); st.pop();}
		cnt++;
	}
	printf("%lld\n",cnt);
	while(pq1.size()>=k)
	{
		stack<pair<long long,int> > st;
		for(int i=0;i<k;i++) {st.push(pq1.top()); pq1.pop();}
		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");
	}
	}
}

Compilation message

nicegift.cpp: In function 'int main()':
nicegift.cpp:17:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  while(pq.size()>=k)
        ~~~~~~~~~^~~
nicegift.cpp:26:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  while(pq1.size()>=k)
        ~~~~~~~~~~^~~
nicegift.cpp:39:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  while(pq.size()>=k)
        ~~~~~~~~~^~~
nicegift.cpp:47:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  while(pq1.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)); sum+=t;}
                        ~~~~~^~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB n=4
2 Correct 2 ms 256 KB n=3
3 Correct 2 ms 376 KB n=3
4 Correct 2 ms 376 KB n=4
5 Correct 2 ms 376 KB n=4
6 Correct 2 ms 256 KB n=2
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB n=4
2 Correct 2 ms 256 KB n=3
3 Correct 2 ms 376 KB n=3
4 Correct 2 ms 376 KB n=4
5 Correct 2 ms 376 KB n=4
6 Correct 2 ms 256 KB n=2
7 Correct 2 ms 256 KB n=5
8 Correct 3 ms 256 KB n=8
9 Correct 9 ms 376 KB n=14
10 Correct 6 ms 376 KB n=11
11 Correct 55 ms 2912 KB n=50000
12 Correct 53 ms 2784 KB n=50000
13 Correct 29 ms 760 KB n=10
14 Correct 37 ms 760 KB n=685
15 Correct 40 ms 956 KB n=623
16 Correct 24 ms 636 KB n=973
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB n=4
2 Correct 2 ms 256 KB n=3
3 Correct 2 ms 376 KB n=3
4 Correct 2 ms 376 KB n=4
5 Correct 2 ms 376 KB n=4
6 Correct 2 ms 256 KB n=2
7 Correct 2 ms 256 KB n=5
8 Correct 3 ms 256 KB n=8
9 Correct 9 ms 376 KB n=14
10 Correct 6 ms 376 KB n=11
11 Correct 55 ms 2912 KB n=50000
12 Correct 53 ms 2784 KB n=50000
13 Correct 29 ms 760 KB n=10
14 Correct 37 ms 760 KB n=685
15 Correct 40 ms 956 KB n=623
16 Correct 24 ms 636 KB n=973
17 Correct 39 ms 760 KB n=989
18 Correct 18 ms 604 KB n=563
19 Correct 29 ms 760 KB n=592
20 Correct 29 ms 764 KB n=938
21 Correct 22 ms 636 KB n=747
22 Correct 26 ms 760 KB n=991
# Verdict Execution time Memory Grader output
1 Correct 755 ms 45892 KB n=1000000
2 Correct 460 ms 29300 KB n=666666
3 Correct 245 ms 16968 KB n=400000
4 Correct 796 ms 26404 KB n=285714
5 Correct 11 ms 1392 KB n=20000
6 Correct 703 ms 21320 KB n=181818
7 Correct 6 ms 884 KB n=10000
8 Correct 94 ms 2296 KB n=6666
9 Correct 3 ms 504 KB n=4000
10 Correct 540 ms 9720 KB n=2857
11 Correct 2 ms 376 KB n=2000
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB n=4
2 Correct 2 ms 256 KB n=3
3 Correct 2 ms 376 KB n=3
4 Correct 2 ms 376 KB n=4
5 Correct 2 ms 376 KB n=4
6 Correct 2 ms 256 KB n=2
7 Correct 2 ms 256 KB n=5
8 Correct 3 ms 256 KB n=8
9 Correct 9 ms 376 KB n=14
10 Correct 6 ms 376 KB n=11
11 Correct 55 ms 2912 KB n=50000
12 Correct 53 ms 2784 KB n=50000
13 Correct 29 ms 760 KB n=10
14 Correct 37 ms 760 KB n=685
15 Correct 40 ms 956 KB n=623
16 Correct 24 ms 636 KB n=973
17 Correct 39 ms 760 KB n=989
18 Correct 18 ms 604 KB n=563
19 Correct 29 ms 760 KB n=592
20 Correct 29 ms 764 KB n=938
21 Correct 22 ms 636 KB n=747
22 Correct 26 ms 760 KB n=991
23 Correct 755 ms 45892 KB n=1000000
24 Correct 460 ms 29300 KB n=666666
25 Correct 245 ms 16968 KB n=400000
26 Correct 796 ms 26404 KB n=285714
27 Correct 11 ms 1392 KB n=20000
28 Correct 703 ms 21320 KB n=181818
29 Correct 6 ms 884 KB n=10000
30 Correct 94 ms 2296 KB n=6666
31 Correct 3 ms 504 KB n=4000
32 Correct 540 ms 9720 KB n=2857
33 Correct 2 ms 376 KB n=2000
34 Execution timed out 2057 ms 1268 KB Time limit exceeded
35 Halted 0 ms 0 KB -