热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

通过用给定范围内最远的同质数替换元素来修改数组

通过用给定范围内最远的同质数替换元素来修改数组原文:https:

通过用给定范围内最远的同质数替换元素来修改数组

原文:https://www . geeksforgeeks . org/通过用给定范围内最远的同素数替换元素来修改数组/

给定一个由 N 个整数和两个正整数 LR 组成的数组arr【】,任务是为每个数组元素找到【L,R】范围内最远的同质数。

示例:

输入: arr[] = {5,150,120},L = 2,R = 250
输出: 249 7 247
说明:
与 arr[0]同素且离它最远的数是 249。
与 arr[1]同素且离它最远的数是 7。
与 arr[2]同素且离它最远的数是 247。

输入: arr[] = {60,246,75,103,155,110},L = 2,R = 250
输出: 60 246 75 103 155 110

方法:给定的问题可以通过对每个数组元素迭代给定的范围【L,R】并找到与该数组元素具有 GCD 1 的最远元素来解决。按照以下步骤解决问题:


  • 遍历给定数组 arr[] ,并执行以下步骤:

    • 初始化两个变量,说 d0互素-1 ,分别用arr【I】存储最远距离和互素数。

    • 迭代给定的范围【L,R】并执行以下步骤:

      • d 的值更新为arr【I】j 的绝对差值。

      • 如果arr[I]j的最大公约数为1d小于ABS(arr[I]–j),则将互质的值更新为 j



    • arr[i] 的值更新为互质



  • 完成上述步骤后,打印数组 arr[] 作为结果数组。

下面是上述方法的实现:

C++

// C++ program for the above approach
#include
using namespace std;
// Function to calculate GCD
// of the integers a and b
int gcd(int a, int b)
{
    // Base Case
    if (a == 0)
        return b;
    // Recursively find the GCD
    return gcd(b % a, a);
}
// Function to find the farthest
// co-prime number over the range
// [L, R] for each array element
void update(int arr[], int n)
{
    // Traverse the array arr[]
    for (int i = 0; i         // Stores the distance
        // between j and arr[i]
        int d = 0;
        // Stores the integer coprime
        // which is coprime is arr[i]
        int coPrime = -1;
        // Traverse the range [2, 250]
        for (int j = 2; j <= 250; j++) {
            // If gcd of arr[i] and j is 1
            if (gcd(arr[i], j) == 1
                && d                 // Update the value of d
                d = abs(arr[i] - j);
                // Update the value
                // of coPrime
                coPrime = j;
            }
        }
        // Update the value of arr[i]
        arr[i] = coPrime;
    }
    // Print the array arr[]
    for (int i = 0; i         cout <}
// Driver Code
int main()
{
    int arr[] = { 60, 246, 75, 103, 155, 110 };
    int N = sizeof(arr) / sizeof(arr[0]);
    update(arr, N);
    return 0;
}

Java 语言(一种计算机语言,尤用于创建网站)

// Java program for the above approach
import java.io.*;
import java.lang.*;
import java.util.*;
class GFG{
// Function to calculate GCD
// of the integers a and b
static int gcd(int a, int b)
{
    // Base Case
    if (a == 0)
        return b;
    // Recursively find the GCD
    return gcd(b % a, a);
}
// Function to find the farthest
// co-prime number over the range
// [L, R] for each array element
static void update(int arr[], int n)
{
    // Traverse the array arr[]
    for(int i = 0; i     {
        // Stores the distance
        // between j and arr[i]
        int d = 0;
        // Stores the integer coprime
        // which is coprime is arr[i]
        int coPrime = -1;
        // Traverse the range [2, 250]
        for(int j = 2; j <= 250; j++)
        {
            // If gcd of arr[i] and j is 1
            if (gcd(arr[i], j) == 1 &&
                d             {
                // Update the value of d
                d = Math.abs(arr[i] - j);
                // Update the value
                // of coPrime
                coPrime = j;
            }
        }
        // Update the value of arr[i]
        arr[i] = coPrime;
    }
    // Print the array arr[]
    for(int i = 0; i         System.out.print(arr[i] + " ");
}
// Driver Code
public static void main(String[] args)
{
    int arr[] = { 60, 246, 75, 103, 155, 110 };
    int N = arr.length;
    update(arr, N);
}
}
// This code is contributed by Kingash

Python 3

# python 3 program for the above approach
from math import gcd
# Function to find the farthest
# co-prime number over the range
# [L, R] for each array element
def update(arr, n):
    # Traverse the array arr[]
    for i in range(n):
        # Stores the distance
        # between j and arr[i]
        d = 0
        # Stores the integer coprime
        # which is coprime is arr[i]
        coPrime = -1
        # Traverse the range [2, 250]
        for j in range(2, 251, 1):
            # If gcd of arr[i] and j is 1
            if (gcd(arr[i], j) == 1 and d                 # Update the value of d
                d = abs(arr[i] - j)
                # Update the value
                # of coPrime
                coPrime = j
        # Update the value of arr[i]
        arr[i] = coPrime
    # Print the array arr[]
    for i in range(n):
        print(arr[i],end =" ")
# Driver Code
if __name__ == '__main__':
    arr = [60, 246, 75, 103, 155, 110]
    N = len(arr)
    update(arr, N)
    # This code is contributed by ipg2016107.

C

// C# program for the above approach
using System;
class GFG {
    // Function to calculate GCD
    // of the integers a and b
    static int gcd(int a, int b)
    {
        // Base Case
        if (a == 0)
            return b;
        // Recursively find the GCD
        return gcd(b % a, a);
    }
    // Function to find the farthest
    // co-prime number over the range
    // [L, R] for each array element
    static void update(int[] arr, int n)
    {
        // Traverse the array arr[]
        for (int i = 0; i             // Stores the distance
            // between j and arr[i]
            int d = 0;
            // Stores the integer coprime
            // which is coprime is arr[i]
            int coPrime = -1;
            // Traverse the range [2, 250]
            for (int j = 2; j <= 250; j++) {
                // If gcd of arr[i] and j is 1
                if (gcd(arr[i], j) == 1
                    && d                     // Update the value of d
                    d = Math.Abs(arr[i] - j);
                    // Update the value
                    // of coPrime
                    coPrime = j;
                }
            }
            // Update the value of arr[i]
            arr[i] = coPrime;
        }
        // Print the array arr[]
        for (int i = 0; i             Console.Write(arr[i] + " ");
    }
    // Driver Code
    public static void Main(string[] args)
    {
        int[] arr = { 60, 246, 75, 103, 155, 110 };
        int N = arr.Length;
        update(arr, N);
    }
}
// This code is contributed by ukasp.

java 描述语言


Output: 

247 5 248 250 2 249

时间复杂度:O((R–L)* N)
T3】辅助空间: O(1)


推荐阅读
  • 深入浅出TensorFlow数据读写机制
    本文详细介绍TensorFlow中的数据读写操作,包括TFRecord文件的创建与读取,以及数据集(dataset)的相关概念和使用方法。 ... [详细]
  • 本文介绍 Java 中如何使用 Year 类的 atMonth 方法将年份和月份组合成 YearMonth 对象,并提供代码示例。 ... [详细]
  • 本文深入探讨了 Java 中 LocalTime 类的 isSupported() 方法,包括其功能、语法和使用示例。通过具体的代码片段,帮助读者理解如何检查特定的时间字段或单位是否被 LocalTime 类支持。 ... [详细]
  • java文本编辑器,java文本编辑器设计思路
    java文本编辑器,java文本编辑器设计思路 ... [详细]
  • 在高并发需求的C++项目中,我们最初选择了JsonCpp进行JSON解析和序列化。然而,在处理大数据量时,JsonCpp频繁抛出异常,尤其是在多线程环境下问题更为突出。通过分析发现,旧版本的JsonCpp存在多线程安全性和性能瓶颈。经过评估,我们最终选择了RapidJSON作为替代方案,并实现了显著的性能提升。 ... [详细]
  • 深入解析动态代理模式:23种设计模式之三
    在设计模式中,动态代理模式是应用最为广泛的一种代理模式。它允许我们在运行时动态创建代理对象,并在调用方法时进行增强处理。本文将详细介绍动态代理的实现机制及其应用场景。 ... [详细]
  • 深入解析ArrayList与LinkedList的差异
    本文详细对比了Java中ArrayList和LinkedList两种常用集合类的特性、性能及适用场景,通过代码示例进行测试,并结合实际应用场景分析其优缺点。 ... [详细]
  • 本文介绍了 Python 的 Pmagick 库中用于图像处理的木炭滤镜方法,探讨其功能和用法,并通过实例演示如何应用该方法。 ... [详细]
  • 本文探讨了如何利用HTML5和JavaScript在浏览器中进行本地文件的读取和写入操作,并介绍了获取本地文件路径的方法。HTML5提供了一系列API,使得这些操作变得更加简便和安全。 ... [详细]
  • 本文详细介绍了Java库XChart中的XYSeries类下的setLineColor()方法,并提供了多个实际应用场景的代码示例。 ... [详细]
  • 掌握Mosek矩阵运算,轻松应对优化挑战
    本篇文章继续深入探讨Mosek学习笔记系列,特别是矩阵运算部分,这对于优化问题的解决至关重要。通过本文,您将了解到如何高效地使用Mosek进行矩阵初始化、线性代数运算及约束域的设定。 ... [详细]
  • 深入解析Spring启动过程
    本文详细介绍了Spring框架的启动流程,帮助开发者理解其内部机制。通过具体示例和代码片段,解释了Bean定义、工厂类、读取器以及条件评估等关键概念,使读者能够更全面地掌握Spring的初始化过程。 ... [详细]
  • 本文介绍了如何在 C# 和 XNA 框架中实现一个自定义的 3x3 矩阵类(MMatrix33),旨在深入理解矩阵运算及其应用场景。该类参考了 AS3 Starling 和其他相关资源,以确保算法的准确性和高效性。 ... [详细]
  • Python + Pytest 接口自动化测试中 Token 关联登录的实现方法
    本文将深入探讨 Python 和 Pytest 在接口自动化测试中如何实现 Token 关联登录,内容详尽、逻辑清晰,旨在帮助读者掌握这一关键技能。 ... [详细]
  • 本文探讨了如何在Classic ASP中实现与PHP的hash_hmac('SHA256', $message, pack('H*', $secret))函数等效的哈希生成方法。通过分析不同实现方式及其产生的差异,提供了一种使用Microsoft .NET Framework的解决方案。 ... [详细]
author-avatar
herogan
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有