Given an integer N, find a sequence of N integers such that the sum of all integers in the sequence is equal to the sum of any two adjacent integers in the sequence.
Examples:
Input: N = 4
Output: 1 -1 1 -1
Explanation: Total sum of the four integers is 0 and the sum of any two adjacent integers is also 0.
Input: N = 5
Output: 1 -2 1 -2 1
Explanation: Total sum of the four integers is -1 and the sum of any two adjacent integers is also -1.
Approach: To solve the problem follow the below idea:
- For even n, we can use the array [-1, 1, -1, 1, …, -1, 1] as a solution. This array has a length of n, and the sum of any two adjacent elements is 0, as well as the sum of the whole array.
- For odd n, we can construct an array s of length n using two fixed values a and b, such that si-1 = si+1 for i = 2, 3, …n-1. Specifically, we can set s1 = a and s2 = b, and then create the array s = [a, b, a, b, …, a, b, a]. We can then solve for ‘a’ and ‘b’ using the fact that the sum of any two adjacent elements and the sum of the whole array must be equal.
- If we let k be a positive integer such that n = 2k+1, then we can find values for ‘a’ and ‘b’ that satisfy the conditions. Specifically, we can set a = k-1 and b = -k, which produces the array [k-1, -k, k-1, -k, …, k-1, -k, k-1]. This array has a length of n, and the sum of any two adjacent elements is k-1-k = -1, as well as the sum of the whole array being k(k-1)-(k-1)k = 0.
- However, there is no solution for n = 3, as a = 0 and b = 0 do not satisfy the conditions. In general, the array we constructed will not work if a or b is equal to 0. Therefore, we must have k ≥ 2 to ensure that both a and b are nonzero.
- Overall, this approach shows that if there is a solution for even n, then there is a solution for odd n greater than or equal to 5.
Follow the steps to solve the problem:
- Initialize an integer variable ‘num’ with the value N/2.
- If N is even print 1, -1, ………, 1, -1
- If N is odd :
- iterate through the sequence of integers from 1 to N.
- If i is odd, print -num, otherwise print num-1.
Below is the implementation for the above approach:
C++
#include <bits/stdc++.h>
using namespace std;
void solve( int n)
{
if (n % 2) {
int num = n / 2;
for ( int i = 0; i < n; i++) {
if (i % 2)
cout << -num << " " ;
else
cout << num - 1 << " " ;
}
cout << endl;
}
else {
for ( int i = 0; i < n; i++) {
if (i % 2)
cout << -1 << " " ;
else
cout << 1 << " " ;
}
cout << endl;
}
}
int main()
{
int n = 9;
solve(9);
}
|
Java
public class GFG {
public static void solve( int n) {
if (n % 2 == 1 ) {
int num = n / 2 ;
for ( int i = 0 ; i < n; i++) {
if (i % 2 == 1 )
System.out.print(-num + " " );
else
System.out.print(num - 1 + " " );
}
System.out.println();
}
else {
for ( int i = 0 ; i < n; i++) {
if (i % 2 == 1 )
System.out.print(- 1 + " " );
else
System.out.print( 1 + " " );
}
System.out.println();
}
}
public static void main(String[] args) {
int n = 9 ;
solve( 9 );
}
}
|
Python3
def solve(n):
if n % 2 :
num = n / / 2
for i in range (n):
if i % 2 :
print ( - num, end = " " )
else :
print (num - 1 , end = " " )
print ()
else :
for i in range (n):
if i % 2 :
print ( - 1 , end = " " )
else :
print ( 1 , end = " " )
print ()
if __name__ = = "__main__" :
n = 9
solve( 9 )
|
C#
using System;
public class GFG
{
static void Solve( int n)
{
if (n % 2 != 0)
{
int num = n / 2;
for ( int i = 0; i < n; i++)
{
if (i % 2 != 0)
Console.Write(-num + " " );
else
Console.Write(num - 1 + " " );
}
Console.WriteLine();
}
else
{
for ( int i = 0; i < n; i++)
{
if (i % 2 != 0)
Console.Write(-1 + " " );
else
Console.Write(1 + " " );
}
Console.WriteLine();
}
}
public static void Main( string [] args)
{
int n = 9;
Solve(n);
}
}
|
Javascript
function solve(n) {
if (n % 2) {
let num = Math.floor(n / 2);
for (let i = 0; i < n; i++) {
if (i % 2)
console.log(-num + " " );
else
console.log(num - 1 + " " );
}
console.log();
}
else {
for (let i = 0; i < n; i++) {
if (i % 2)
console.log(-1 + " " );
else
console.log(1 + " " );
}
console.log();
}
}
let n = 9;
solve(9);
|
Output
3 -4 3 -4 3 -4 3 -4 3
Time Complexity: O(N)
Auxiliary Space: O(1)
Feeling lost in the world of random DSA topics, wasting time without progress? It's time for a change! Join our DSA course, where we'll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 geeks!
Last Updated :
19 Sep, 2023
Like Article
Save Article