Table of Contents
Description
Example
Home Backend Development C++ Given a constraint, add the elements of the given array

Given a constraint, add the elements of the given array

Sep 05, 2023 pm 01:01 PM
array elements Restrictions Add

Given a constraint, add the elements of the given array

For this problem, to add elements of two given arrays, we have some constraints, based on these constraints, the added values ​​will change. The sum of two given arrays a[] and b[] is stored into a third array c[] so that they give some elements in unit numbers. If the number of digits in the sum is greater than 1, the elements of the third array are split into two single-digit elements. For example, if the sum is 27, the third array will store it as 2,7.

Input: a[] = {1, 2, 3, 7, 9, 6}
       b[] = {34, 11, 4, 7, 8, 7, 6, 99}
Output: 3 5 1 3 7 1 4 1 7 1 3 6 9 9
Copy after login

Description

Output arrays and run a loop from the 0th index of both arrays. For each iteration of the loop, we consider the next elements in both arrays and add them. If the sum is greater than 9, we push the individual numbers of the sum to the output array, otherwise we push the sum itself to the output array. Finally, we push the remaining elements of the larger input array to the output array.

Example

#include <iostream>
#include<bits/stdc++.h>
using namespace std;
void split(int n, vector<int> &c) {
   vector<int> temp;
   while (n) {
      temp.push_back(n%10);
      n = n/10;
   }
   c.insert(c.end(), temp.rbegin(), temp.rend());
}
void addArrays(int a[], int b[], int m, int n) {
   vector<int> out;
   int i = 0;
   while (i < m && i < n) {
      int sum = a[i] + b[i];
      if (sum < 10) {
         out.push_back(sum);
      } else {
         split(sum, out);
      }
      i++;
   }
   while (i < m) {
      split(a[i++], out);
   }
   while (i < n) {
      split(b[i++], out);
   }
   for (int x : out)
   cout << x << " ";
}
int main() {
   int a[] = {1, 2, 3, 7, 9, 6};
   int b[] = {34, 11, 4, 7, 8, 7, 6, 99};
   int m =6;
   int n = 8;
   addArrays(a, b, m, n);
   return 0;
}
Copy after login

The above is the detailed content of Given a constraint, add the elements of the given array. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to find the maximum and minimum value of array elements in Java How to find the maximum and minimum value of array elements in Java Oct 08, 2023 am 09:44 AM

Use the `Arrays.stream()` function in Java to convert an array into a stream, and then use the `min()` and `max()` functions to calculate the minimum and maximum values.

Which array element has the smallest sum of absolute differences? Which array element has the smallest sum of absolute differences? Aug 29, 2023 am 10:09 AM

Here we will see an interesting problem. We have an array 'a' containing N elements. We need to find an element x that minimizes the value of |a[0]-x|+|a[1]-x|+...+|a[n-1]-x|. Then we need to find the minimized sum. Suppose the array is: {1,3,9,6,3}, and now x is 3. So the sum is |1-3|+|3-3|+|9-3|+|6-3|+|3-3|=11. To solve this problem, we need to choose the median of the array as x. If the size of the array is even, there will be two median values. They are all the best choices for x. Algorithm minSum(arr,n)begin &

How to use implode function to concatenate array elements into string in PHP How to use implode function to concatenate array elements into string in PHP Jun 26, 2023 pm 02:02 PM

In PHP programming, the implode function is a very commonly used function that can concatenate elements in an array into a string. Using this function can save developers from writing a lot of code to connect strings, making it more efficient. The basic syntax of implode is: stringimplode(string$glue,array$pieces). This function receives two parameters: $glue represents the separator to connect the array elements, and $pieces represents

Concatenate array elements into a delimited string using PHP's implode() function Concatenate array elements into a delimited string using PHP's implode() function Nov 04, 2023 pm 02:37 PM

Use PHP's implode() function to connect array elements into a delimited string. The code example is as follows: &lt;?php//Define an array $array=array('apple','banana','orange'); //Use the implode() function to connect the array elements into a delimited string $delimiter=',';//Define the delimiter $result=im

Find the value after removing N characters from the string 'S' in N operations under the given constraints Find the value after removing N characters from the string 'S' in N operations under the given constraints Aug 26, 2023 pm 10:29 PM

What are the usage specifications for strings? Solve a specific challenge involving the given string S. The string S contains only lowercase English letters, and certain constraints must be followed when removing characters. The given constraint is - there are lowercase English letters in the string S. Only characters that appear multiple times in the string can be deleted. Only consecutive characters can be deleted. The following steps can be used to remove characters from a string S - find all characters that occur multiple times while iterating the string S. Find all consecutive occurrences of characters by iterating the string S again for each character. If the number of consecutive occurrences of a character is greater than or equal to the number of iterations, the first N occurrences of the character are deleted. Continue with steps 2 and 3 until all iterations are completed. Finally, by returning the final string S, we can find that after N

In C language, what are the array elements that appear multiple times? In C language, what are the array elements that appear multiple times? Sep 05, 2023 am 09:05 AM

Array is a container that contains elements of the same data type, and the length needs to be defined in advance. Elements in an array can appear in any order and any number of times. So, in this program, we will find the elements that appear multiple times in an array. Problem description - We have been given an array arr[], we need to find the recurring elements in the array and print them. Let us take an example to understand better. Example: Input:arr[]={5,11,11,2,1,4,2}Output:112 Explanation We have an array arr containing some elements, first we will compare the next element in the repeat function. Repeat function is used to find duplicate elements in an array. In the repeat function we use

Get the element keys in an array using the PHP array_keys() function Get the element keys in an array using the PHP array_keys() function Jun 27, 2023 am 08:54 AM

In the process of using PHP to develop, it is often necessary to operate arrays. In an array, we usually need to get the key value of the element to facilitate subsequent operations. For this purpose, PHP provides a very convenient function array_keys(), which can quickly obtain the keys of elements from an array. The usage of the array_keys() function is very simple. Its basic syntax is as follows: arrayarray_keys(array$array[,mixed$search_valu

In Java, how to add two lists? In Java, how to add two lists? Sep 02, 2023 pm 03:05 PM

We can add two lists using the addAll() method of List. Use the addAll() method without an index argument booleanaddAll(Collection<?extendsE>c) to append all elements in the specified collection to the end of this list in the order returned by the iterator of the specified collection (optional operation). If the specified collection is modified while the operation is in progress, the behavior of the operation is undefined. (Note that this will happen if the specified collection is this list and it is non-empty.). Parameter c - the collection containing the elements to be added to this list. Returns True if this list changed as a result of the call. ThrowUnsup

See all articles