Codeforces Round #640 (Div. 4)

https://codeforces.ml/contest/1352

A. Sum of Round Numbers

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

A positive (strictly greater than zero) integer is called round if it is of the form d00...0. In other words, a positive integer is round if all its digits except the leftmost (most significant) are equal to zero. In particular, all numbers from 11 to 99 (inclusive) are round.

For example, the following numbers are round: 40004000, 11, 99, 800800, 9090. The following numbers are not round: 110110, 707707, 222222, 10011001.

You are given a positive integer nn (1≤n≤1041≤n≤104). Represent the number nn as a sum of round numbers using the minimum number of summands (addends). In other words, you need to represent the given number nn as a sum of the least number of terms, each of which is a round number.

Input

The first line contains an integer tt (1≤t≤1041≤t≤104) — the number of test cases in the input. Then tt test cases follow.

Each test case is a line containing an integer nn (1≤n≤1041≤n≤104).

Output

Print tt answers to the test cases. Each answer must begin with an integer kk — the minimum number of summands. Next, kk terms must follow, each of which is a round number, and their sum is nn. The terms can be printed in any order. If there are several answers, print any of them.

Example

input

Copy

5
5009
7
9876
10000
10

output

Copy

2
5000 9
1
7 
4
800 70 6 9000 
1
10000 
1
10 
#include<bits/stdc++.h>
#define ll long long
#define rep(i,a,n) for(int i=a;i<=n;i++)
using namespace std;
ll n,m,k,l,t,s; 
ll a[1000001];
int main()
{
	cin>>t;
	while(t--)
	{
		cin>>n;
		int j=1;
		k=1;
		//memset(a,0,sizeof(a));
		while(n)
		{
			if(n%10)
			{
				a[j]=k*(n%10);
				j++;	
			}
			n/=10;
			k*=10;
		} 
		j--;
		cout<<j<<endl;
		for(int i=j;i>=1;i--)
		{
			cout<<a[i]<<" ";
		}
		cout<<endl;
	} 
}
 

B. Same Parity Summands

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

You are given two positive integers nn (1≤n≤1091≤n≤109) and kk (1≤k≤1001≤k≤100). Represent the number nn as the sum of kk positive integers of the same parity (have the same remainder when divided by 22).

In other words, find a1,a2,…,aka1,a2,…,ak such that all ai>0ai>0, n=a1+a2+…+akn=a1+a2+…+ak and either all aiai are even or all aiai are odd at the same time.

If such a representation does not exist, then report it.

Input

The first line contains an integer tt (1≤t≤10001≤t≤1000) — the number of test cases in the input. Next, tt test cases are given, one per line.

Each test case is two positive integers nn (1≤n≤1091≤n≤109) and kk (1≤k≤1001≤k≤100).

Output

For each test case print:

  • YES and the required values aiai, if the answer exists (if there are several answers, print any of them);
  • NO if the answer does not exist.

The letters in the words YES and NO can be printed in any case.

Example

input

Copy

8
10 3
100 4
8 7
97 2
8 8
3 10
5 3
1000000000 9

output

Copy

YES
4 2 4
YES
55 5 5 35
NO
NO
YES
1 1 1 1 1 1 1 1
NO
YES
3 1 1
YES
111111110 111111110 111111110 111111110 111111110 111111110 111111110 111111110 111111120
#include<bits/stdc++.h>
#define ll long long
#define rep(i,a,n) for(int i=a;i<=n;i++)
using namespace std;
ll n,m,k,l,t,s1,s0; 
ll a[1000001];
int main()
{
	cin>>t;
	while(t--)
	{
		cin>>n>>k;
		s1=k;
		s0=k*2;
		if((n-s1)%2==0&&n>=s1)
		{
			cout<<"YES"<<endl;
			cout<<1+(n-s1)<<" ";
			for(int i=2;i<=k;i++)
			{
				cout<<1<<' ';
			}
			cout<<endl;
		}
		else if((n-s0)%2==0&&n>=s0)
		{
			cout<<"YES"<<endl;
			cout<<2+(n-s0)<<" ";
			for(int i=2;i<=k;i++)
			{
				cout<<2<<' ';
			}
			cout<<endl;
		}
		else
		{
			cout<<"NO"<<endl;
		}
		
	} 
}
 

C. K-th Not Divisible by n

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

You are given two positive integers nn and kk. Print the kk-th positive integer that is not divisible by nn.

For example, if n=3n=3, and k=7k=7, then all numbers that are not divisible by 33 are: 1,2,4,5,7,8,10,11,13…1,2,4,5,7,8,10,11,13…. The 77-th number among them is 1010.

Input

The first line contains an integer tt (1≤t≤10001≤t≤1000) — the number of test cases in the input. Next, tt test cases are given, one per line.

Each test case is two positive integers nn (2≤n≤1092≤n≤109) and kk (1≤k≤1091≤k≤109).

Output

For each test case print the kk-th positive integer that is not divisible by nn.

Example

input

Copy

6
3 7
4 12
2 1000000000
7 97
1000000000 1000000000
2 1

output

Copy

10
15
1999999999
113
1000000001
1
#include<bits/stdc++.h>
#define ll long long
#define rep(i,a,n) for(int i=a;i<=n;i++)
using namespace std;
ll n,m,k,l,t,s,s0; 
ll a[1000001];
int main()
{
	cin>>t;
	while(t--)
	{
		cin>>n>>k;
		s=0;
		s=n-1;
		l=floor(k*1.0/s)*n+k%s;
		if(k%s==0)
		l--;
		cout<<l<<endl;
	} 
}
 

D. Alice, Bob and Candies

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

There are nn candies in a row, they are numbered from left to right from 11 to nn. The size of the ii-th candy is aiai.

Alice and Bob play an interesting and tasty game: they eat candy. Alice will eat candy from left to right, and Bob — from right to left. The game ends if all the candies are eaten.

The process consists of moves. During a move, the player eats one or more sweets from her/his side (Alice eats from the left, Bob — from the right).

Alice makes the first move. During the first move, she will eat 11 candy (its size is a1a1). Then, each successive move the players alternate — that is, Bob makes the second move, then Alice, then again Bob and so on.

On each move, a player counts the total size of candies eaten during the current move. Once this number becomes strictly greater than the total size of candies eaten by the other player on their previous move, the current player stops eating and the move ends. In other words, on a move, a player eats the smallest possible number of candies such that the sum of the sizes of candies eaten on this move is strictly greater than the sum of the sizes of candies that the other player ate on the previous move. If there are not enough candies to make a move this way, then the player eats up all the remaining candies and the game ends.

For example, if n=11n=11 and a=[3,1,4,1,5,9,2,6,5,3,5]a=[3,1,4,1,5,9,2,6,5,3,5], then:

  • move 1: Alice eats one candy of size 33 and the sequence of candies becomes [1,4,1,5,9,2,6,5,3,5][1,4,1,5,9,2,6,5,3,5].
  • move 2: Alice ate 33 on the previous move, which means Bob must eat 44 or more. Bob eats one candy of size 55 and the sequence of candies becomes [1,4,1,5,9,2,6,5,3][1,4,1,5,9,2,6,5,3].
  • move 3: Bob ate 55 on the previous move, which means Alice must eat 66 or more. Alice eats three candies with the total size of 1+4+1=61+4+1=6 and the sequence of candies becomes [5,9,2,6,5,3][5,9,2,6,5,3].
  • move 4: Alice ate 66 on the previous move, which means Bob must eat 77 or more. Bob eats two candies with the total size of 3+5=83+5=8 and the sequence of candies becomes [5,9,2,6][5,9,2,6].
  • move 5: Bob ate 88 on the previous move, which means Alice must eat 99 or more. Alice eats two candies with the total size of 5+9=145+9=14 and the sequence of candies becomes [2,6][2,6].
  • move 6 (the last): Alice ate 1414 on the previous move, which means Bob must eat 1515 or more. It is impossible, so Bob eats the two remaining candies and the game ends.

Print the number of moves in the game and two numbers:

  • aa — the total size of all sweets eaten by Alice during the game;
  • bb — the total size of all sweets eaten by Bob during the game.

Input

The first line contains an integer tt (1≤t≤50001≤t≤5000) — the number of test cases in the input. The following are descriptions of the tt test cases.

Each test case consists of two lines. The first line contains an integer nn (1≤n≤10001≤n≤1000) — the number of candies. The second line contains a sequence of integers a1,a2,…,ana1,a2,…,an (1≤ai≤10001≤ai≤1000) — the sizes of candies in the order they are arranged from left to right.

It is guaranteed that the sum of the values of nn for all sets of input data in a test does not exceed 2⋅1052⋅105.

Output

For each set of input data print three integers — the number of moves in the game and the required values aa and bb.

Example

input

Copy

7
11
3 1 4 1 5 9 2 6 5 3 5
1
1000
3
1 1 1
13
1 2 3 4 5 6 7 8 9 10 11 12 13
2
2 1
6
1 1 1 1 1 1
7
1 1 1 1 1 1 1

output

Copy

6 23 21
1 1000 0
2 1 2
6 45 46
2 2 1
3 4 2
4 4 3
#include<bits/stdc++.h>
#define ll long long
#define rep(i,a,n) for(int i=a;i<=n;i++)
using namespace std;
ll n,m,k,t,s1,s0,ss; 
ll a[1000001];
int main()
{
	cin>>t;
	while(t--)
	{
		cin>>n;
		s1=0;
		s0=0;
		k=0;
		rep(i,1,n) cin>>a[i];
		int l=1,r=n,j=0;
		while(l<=r)
		{
			j++;
			ss=0;
			while(ss<=k)
			{
				if(l>r)
				break;
				ss+=a[l];
				l++;
			}
			if(ss<=k)
			{
				s0+=ss;
				break;
			}
			s0+=ss;
			k=ss;
			if(l>r)
			break;
			j++;
			ss=0;
			while(ss<=k)
			{
				if(l>r)
				break;
				ss+=a[r];
				r--;
			}
			if(ss<=k)
			{
				s1+=ss;
				break;
			}
			s1+=ss;
			k=ss;
		}
		cout<<j<<' '<<s0<<' '<<s1<<endl;
	} 
}
 

E. Special Elements

time limit per test

1 second

memory limit per test

64 megabytes

input

standard input

output

standard output

Pay attention to the non-standard memory limit in this problem.

In order to cut off efficient solutions from inefficient ones in this problem, the time limit is rather strict. Prefer to use compiled statically typed languages (e.g. C++). If you use Python, then submit solutions on PyPy. Try to write an efficient solution.

The array a=[a1,a2,…,an]a=[a1,a2,…,an] (1≤ai≤n1≤ai≤n) is given. Its element aiai is called special if there exists a pair of indices ll and rr (1≤l<r≤n1≤l<r≤n) such that ai=al+al+1+…+arai=al+al+1+…+ar. In other words, an element is called special if it can be represented as the sum of two or more consecutive elements of an array (no matter if they are special or not).

Print the number of special elements of the given array aa.

For example, if n=9n=9 and a=[3,1,4,1,5,9,2,6,5]a=[3,1,4,1,5,9,2,6,5], then the answer is 55:

  • a3=4a3=4 is a special element, since a3=4=a1+a2=3+1a3=4=a1+a2=3+1;
  • a5=5a5=5 is a special element, since a5=5=a2+a3=1+4a5=5=a2+a3=1+4;
  • a6=9a6=9 is a special element, since a6=9=a1+a2+a3+a4=3+1+4+1a6=9=a1+a2+a3+a4=3+1+4+1;
  • a8=6a8=6 is a special element, since a8=6=a2+a3+a4=1+4+1a8=6=a2+a3+a4=1+4+1;
  • a9=5a9=5 is a special element, since a9=5=a2+a3=1+4a9=5=a2+a3=1+4.

Please note that some of the elements of the array aa may be equal — if several elements are equal and special, then all of them should be counted in the answer.

Input

The first line contains an integer tt (1≤t≤10001≤t≤1000) — the number of test cases in the input. Then tt test cases follow.

Each test case is given in two lines. The first line contains an integer nn (1≤n≤80001≤n≤8000) — the length of the array aa. The second line contains integers a1,a2,…,ana1,a2,…,an (1≤ai≤n1≤ai≤n).

It is guaranteed that the sum of the values of nn for all test cases in the input does not exceed 80008000.

Output

Print tt numbers — the number of special elements for each of the given arrays.

Example

input

Copy

5
9
3 1 4 1 5 9 2 6 5
3
1 1 2
5
1 1 1 1 1
8
8 7 6 5 4 3 2 1
1
1

output

Copy

5
1
0
4
0
#include<bits/stdc++.h>
#define ll int
#define rep(i,a,n) for(int i=a;i<=n;i++)
using namespace std;
ll n,k,t,s; 

int main()
{
	cin>>t;
	while(t--)
	{
		cin>>n;
		ll a[8001],b[8001],p[8001];
		rep(i,0,8000) b[i]=0,p[i]=0;
		rep(i,1,n) 
		{
			cin>>a[i];
			b[a[i]]++;
		}
		s=0;
		for(int i=1;i<=n;i++)
		{
			k=a[i];
			for(int j=i+1;j<=n;j++)
			{
				k+=a[j];
				if(k>n)
				break;
				if(p[k]==0)
				{
					s+=b[k];
					p[k]=1;
				}
			}
		}
		cout<<s<<endl;
	} 
}
 

F. Binary String Reconstruction

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

For some binary string ss (i.e. each character sisi is either '0' or '1'), all pairs of consecutive (adjacent) characters were written. In other words, all substrings of length 22 were written. For each pair (substring of length 22), the number of '1' (ones) in it was calculated.

You are given three numbers:

  • n0n0 — the number of such pairs of consecutive characters (substrings) where the number of ones equals 00;
  • n1n1 — the number of such pairs of consecutive characters (substrings) where the number of ones equals 11;
  • n2n2 — the number of such pairs of consecutive characters (substrings) where the number of ones equals 22.

For example, for the string s=s="1110011110", the following substrings would be written: "11", "11", "10", "00", "01", "11", "11", "11", "10". Thus, n0=1n0=1, n1=3n1=3, n2=5n2=5.

Your task is to restore any suitable binary string ss from the given values n0,n1,n2n0,n1,n2. It is guaranteed that at least one of the numbers n0,n1,n2n0,n1,n2 is greater than 00. Also, it is guaranteed that a solution exists.

Input

The first line contains an integer tt (1≤t≤10001≤t≤1000) — the number of test cases in the input. Then test cases follow.

Each test case consists of one line which contains three integers n0,n1,n2n0,n1,n2 (0≤n0,n1,n2≤1000≤n0,n1,n2≤100; n0+n1+n2>0n0+n1+n2>0). It is guaranteed that the answer for given n0,n1,n2n0,n1,n2 exists.

Output

Print tt lines. Each of the lines should contain a binary string corresponding to a test case. If there are several possible solutions, print any of them.

Example

input

Copy

7
1 3 5
1 1 1
3 9 3
0 1 0
3 1 2
0 0 3
2 0 0

output

Copy

1110011110
0011
0110001100101011
10
0000111
1111
000
#include <algorithm>
#include <bitset>
#include <cctype>
#include <cerrno>
#include <clocale>
#include <cmath>
#include <complex>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <deque>
#include <exception>
#include <fstream>
#include <functional>
#include <limits>
#include <list>
#include <map>
#include <iomanip>
#include <ios>
#include<iosfwd>
#include <iostream>
#include <istream>
#include <ostream>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <stdexcept>
#include <streambuf>
#include <string>
#include <utility>
#include <vector>
#include <cwchar>
#include <cwctype>
#define ll long long
#define rep(i,a,n) for(int i=a;i<=n;i++)
using namespace std;
ll n0,n1,n2,m,k,t,s,l,r,mod=1e9+7,p; 
int main()
{
	cin>>t;
	while(t--)
	{
		cin>>n0>>n1>>n2;
		if(n1==0)
		{
			if(n0!=0)
			{
				for(int i=0;i<=n0;i++)
				{
					cout<<0;
				}
			}
			if(n2!=0)
			{
				for(int i=0;i<=n2;i++)
				{
					cout<<1;
				}
			}
		}
		else
		{
			for(int i=0;i<=n2;i++)
			{
				cout<<1;
			}
			for(int i=0;i<=n0;i++)
			{
				cout<<0;
			}
			for(int i=1;i<n1;i++)
			{
				if(i%2==1)
				cout<<1;
				else
				cout<<0;
			}
			
		}
		cout<<endl;
	}
}
 

G. Special Permutation

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

A permutation of length nn is an array p=[p1,p2,…,pn]p=[p1,p2,…,pn], which contains every integer from 11 to nn (inclusive) and, moreover, each number appears exactly once. For example, p=[3,1,4,2,5]p=[3,1,4,2,5] is a permutation of length 55.

For a given number nn (n≥2n≥2), find a permutation pp in which absolute difference (that is, the absolute value of difference) of any two neighboring (adjacent) elements is between 22 and 44, inclusive. Formally, find such permutation pp that 2≤|pi−pi+1|≤42≤|pi−pi+1|≤4 for each ii (1≤i<n1≤i<n).

Print any such permutation for the given integer nn or determine that it does not exist.

Input

The first line contains an integer tt (1≤t≤1001≤t≤100) — the number of test cases in the input. Then tt test cases follow.

Each test case is described by a single line containing an integer nn (2≤n≤10002≤n≤1000).

Output

Print tt lines. Print a permutation that meets the given requirements. If there are several such permutations, then print any of them. If no such permutation exists, print -1.

Example

input

Copy

6
10
2
4
6
7
13

output

Copy

9 6 10 8 4 7 3 1 5 2 
-1
3 1 4 2 
5 3 6 2 4 1 
5 1 3 6 2 4 7 
13 9 7 11 8 4 1 3 5 2 6 10 12 
#include<bits/stdc++.h>
#define ll long long
#define rep(i,a,n) for(int i=a;i<=n;i++)
using namespace std;
ll n,k,t,s; 
map<ll,ll>m;
int main()
{
	cin>>t;
	while(t--)
	{
		cin>>n;
		m.clear();
		if(n<=3)
		cout<<-1<<endl;
		else
		{
			if(n%2==1)
			{
				k=n;
				for(;k>=1;k-=2)
				{
					cout<<k<<' ';
				}
				cout<<"4 2 ";
				for(int i=6;i<=n;i+=2)
				{
					cout<<i<<' ';
				}
				cout<<endl;
			}
			else
			{
				k=n-1;
				for(;k>=1;k-=2)
				{
					cout<<k<<' ';
				}
				cout<<"4 2 ";
				for(int i=6;i<=n;i+=2)
				{
					cout<<i<<' ';
				}
				cout<<endl;
			}
			
		}
		
	} 
}
 

 

在探索智慧旅游的新纪元中,一个集科技、创新与服务于一体的整体解决方案正悄然改变着我们的旅行方式。智慧旅游,作为智慧城市的重要分支,旨在通过新一代信息技术,如云计算、大数据、物联网等,为游客、旅游企业及政府部门提供无缝对接、高效互动的旅游体验与管理模式。这一方案不仅重新定义了旅游行业的服务标准,更开启了旅游业数字化转型的新篇章。 智慧旅游的核心在于“以人为本”,它不仅仅关注技术的革新,更注重游客体验的提升。从游前的行程规划、信息查询,到游中的智能导航、个性化导览,再到游后的心情分享、服务评价,智慧旅游通过构建“一云多屏”的服务平台,让游客在旅游的全过程中都能享受到便捷、个性化的服务。例如,游客可以通过手机APP轻松定制专属行程,利用智能语音导览深入了解景点背后的故事,甚至通过三维GIS地图实现虚拟漫游,提前感受目的地的魅力。这些创新服务不仅增强了游客的参与感和满意度,也让旅游变得更加智能化、趣味化。 此外,智慧旅游还为旅游企业和政府部门带来了前所未有的管理变革。通过大数据分析,旅游企业能够精准把握市场动态,实现旅游产品的精准营销和个性化推荐,从而提升市场竞争力。而政府部门则能利用智慧旅游平台实现对旅游资源的科学规划和精细管理,提高监管效率和质量。例如,通过实时监控和数据分析,政府可以迅速应对旅游高峰期的客流压力,有效预防景区超载,保障游客安全。同时,智慧旅游还促进了跨行业、跨部门的数据共享与协同合作,为旅游业的可持续发展奠定了坚实基础。总之,智慧旅游以其独特的魅力和无限潜力,正引领着旅游业迈向一个更加智慧、便捷、高效的新时代。
内容概要:本文详细介绍了大模型的发展现状与未来趋势,尤其聚焦于DeepSeek这一创新应用。文章首先回顾了人工智能的定义、分类及其发展历程,指出从摩尔定律到知识密度提升的转变,强调了大模型知识密度的重要性。随后,文章深入探讨了DeepSeek的发展路径及其核心价值,包括其推理模型、思维链技术的应用及局限性。此外,文章展示了DeepSeek在多个行业的应用场景,如智能客服、医疗、金融等,并分析了DeepSeek如何赋能个人发展,具体体现在公文写作、文档处理、知识搜索、论文写作等方面。最后,文章展望了大模型的发展趋势,如通用大模型与垂域大模型的协同发展,以及本地部署小模型成为主流应用渠道的趋势。 适合人群:对人工智能和大模型技术感兴趣的从业者、研究人员及希望利用DeepSeek提升工作效率的个人用户。 使用场景及目标:①了解大模型技术的最新进展和发展趋势;②掌握DeepSeek在不同领域的具体应用场景和操作方法;③学习如何通过DeepSeek提升个人在公文写作、文档处理、知识搜索、论文写作等方面的工作效率;④探索大模型在特定行业的应用潜力,如医疗、金融等领域。 其他说明:本文不仅提供了理论知识,还结合实际案例,详细介绍了DeepSeek在各个场景下的应用方式,帮助读者更好地理解和应用大模型技术。同时,文章也指出了当前大模型技术面临的挑战,如模型的局限性和数据安全问题,鼓励读者关注技术的持续改进和发展。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值