📜  前 N 个自然数排列中的第 K 个元素,其中所有偶数都按升序排列在奇数之前

📅  最后修改于: 2021-10-27 03:29:03             🧑  作者: Mango

给定两个整数NK ,任务是在前N 个自然数排列中找到第K元素,这些自然数排列使得所有偶数按递增顺序出现在奇数之前。

例子 :

朴素方法:解决问题的最简单方法是生成所需的前N 个自然数的排列,然后遍历该排列以找到其中存在的第K元素。
请按照以下步骤解决问题:

  • 初始化一个数组,比如大小为N 的V[] ,以存储所需的序列。
  • 将所有小于或等于N 的偶数插入V[]
  • 然后,将所有小于或等于N 的奇数插入到V[] 中
  • 形成数组后,打印V[K – 1] 的值作为结果。

下面是上述方法的实现:

C++
// C++ program for the above approach
#include 
using namespace std;
 
// Function to find the K-th element
// in the required permutation
void findKthElement(int N, int K)
{
    // Stores teh required permutation
    vector v;
 
    // Insert all the even numbers
    // less than or equal to N
    for (int i = 1; i <= N; i++) {
        if (i % 2 == 0) {
            v.push_back(i);
        }
    }
 
    // Now, insert all odd numbers
    // less than or equal to N
    for (int i = 1; i <= N; i++) {
        if (i % 2 != 0) {
            v.push_back(i);
        }
    }
 
    // Print the Kth element
    cout << v[K - 1];
}
 
// Driver Code
int main()
{
    int N = 10, K = 3;
    findKthElement(N, K);
 
    return 0;
}


Java
// Java program for the above approach
import java.io.*;
import java.lang.*;
import java.util.*;
class GFG
{
 
  // Function to find the K-th element
  // in the required permutation
  static void findKthElement(int N, int K)
  {
 
    // Stores the required permutation
    ArrayList v = new ArrayList<>();
 
    // Insert all the even numbers
    // less than or equal to N
    for (int i = 1; i <= N; i++) {
      if (i % 2 == 0) {
        v.add(i);
      }
    }
 
    // Now, insert all odd numbers
    // less than or equal to N
    for (int i = 1; i <= N; i++) {
      if (i % 2 != 0) {
        v.add(i);
      }
    }
 
    // Print the Kth element
    System.out.println(v.get(K - 1));
  }
 
  // Driver code
  public static void main(String[] args)
  {
 
    int N = 10, K = 3;
 
    // functions call
    findKthElement(N, K);
  }
}
 
// This code is contributed by Kingash.


Python3
# python 3 program for the above approach
 
# Function to find the K-th element
# in the required permutation
def findKthElement(N, K):
 
    # Stores teh required permutation
    v = []
 
    # Insert all the even numbers
    # less than or equal to N
    for i in range(1, N + 1):
        if (i % 2 == 0):
            v.append(i)
 
    # Now, insert all odd numbers
    # less than or equal to N
    for i in range(1, N + 1):
        if (i % 2 != 0):
            v.append(i)
 
    # Print the Kth element
    print(v[K - 1])
 
 
# Driver Code
if __name__ == "__main__":
    N = 10
    K = 3
    findKthElement(N, K)
 
    # This code is contributed by ukasp.


C#
// C# program for above approach
using System;
using System.Collections.Generic;
 
public class GFG
{
 
  // Function to find the K-th element
  // in the required permutation
  static void findKthElement(int N, int K)
  {
 
    // Stores the required permutation
    List v = new List();
 
    // Insert all the even numbers
    // less than or equal to N
    for (int i = 1; i <= N; i++) {
      if (i % 2 == 0) {
        v.Add(i);
      }
    }
 
    // Now, insert all odd numbers
    // less than or equal to N
    for (int i = 1; i <= N; i++) {
      if (i % 2 != 0) {
        v.Add(i);
      }
    }
 
    // Print the Kth element
    Console.WriteLine(v[K - 1]);
  }
 
  // Driver code
  public static void Main(String[] args)
  {
    int N = 10, K = 3;
 
    // functions call
    findKthElement(N, K);
  }
}
 
// This code is contributed by susmitakundugoaldanga.


Javascript


C++
// C++ program for the above approach
#include 
using namespace std;
 
// Function to find the Kth element
// in the required permutation
void findKthElement(int N, int K)
{
    // Store the required result
    int ans = 0;
 
    // If K is in the first
    // N / 2 elements, print K * 2
    if (K <= N / 2) {
        ans = K * 2;
    }
 
    // Otherwise, K is greater than N/2
    else {
 
        // If N is even
        if (N % 2 == 0) {
            ans = (K * 2) - N - 1;
        }
 
        // If N is odd
        else {
            ans = (K * 2) - N;
        }
    }
 
    // Print the required result
    cout << ans;
}
 
// Driver Code
int main()
{
    int N = 10, K = 3;
    findKthElement(N, K);
 
    return 0;
}


Java
// Java program for the above approach
import java.io.*;
import java.lang.*;
import java.util.*;
class GFG {
 
  // Function to find the Kth element
  // in the required permutation
  static void findKthElement(int N, int K)
  {
    // Store the required result
    int ans = 0;
 
    // If K is in the first
    // N / 2 elements, print K * 2
    if (K <= N / 2) {
      ans = K * 2;
    }
 
    // Otherwise, K is greater than N/2
    else {
 
      // If N is even
      if (N % 2 == 0) {
        ans = (K * 2) - N - 1;
      }
 
      // If N is odd
      else {
        ans = (K * 2) - N;
      }
    }
 
    // Print the required result
    System.out.println(ans);
  }
 
  // Driver code
  public static void main(String[] args)
  {
 
    int N = 10, K = 3;
 
    // functions call
    findKthElement(N, K);
  }
}
 
// This code is contributed by Kingash.


Python3
# Python 3 program for the above approach
 
# Function to find the Kth element
# in the required permutation
def findKthElement(N, K):
   
    # Store the required result
    ans = 0
 
    # If K is in the first
    # N / 2 elements, print K * 2
    if (K <= N / 2):
        ans = K * 2
 
    # Otherwise, K is greater than N/2
    else:
       
        # If N is even
        if (N % 2 == 0):
            ans = (K * 2) - N - 1
 
        # If N is odd
        else:
            ans = (K * 2) - N
 
    # Print the required result
    print(ans)
 
# Driver Code
if __name__ == '__main__':
    N = 10
    K = 3
    findKthElement(N, K)
     
    # This code is contributed by ipg2016107.


C#
// C# program for the above approach
using System;
 
class GFG{
 
  // Function to find the Kth element
  // in the required permutation
  static void findKthElement(int N, int K)
  {
     
    // Store the required result
    int ans = 0;
 
    // If K is in the first
    // N / 2 elements, print K * 2
    if (K <= N / 2) {
      ans = K * 2;
    }
 
    // Otherwise, K is greater than N/2
    else {
 
      // If N is even
      if (N % 2 == 0) {
        ans = (K * 2) - N - 1;
      }
 
      // If N is odd
      else {
        ans = (K * 2) - N;
      }
    }
 
    // Print the required result
    Console.Write(ans);
  }
 
  // Driver code
  static void Main()
  {
    int N = 10, K = 3;
 
    // functions call
    findKthElement(N, K);
  }
}
 
// This code is contributed by sanjoy_62.


Javascript


输出
6

时间复杂度: O(N)
辅助空间: O(N)

高效方法:为了优化上述方法,其思想是基于观察到前N / 2 个元素是偶数并且前半部分第K元素的值等于K * 2 。如果K > N/2 ,第K元素的值取决于N是奇数还是偶数。
请按照以下步骤解决问题:

  • 初始化一个变量,比如ans,来存储第K元素。
  • 检查K的值是否≤ N/2 。如果发现是真的,请将 ans更新为K*2
  • 否则, K位于下半场。在这种情况下, ans取决于N的值。
    • 如果N 的值为偶数,则将ans更新为(K*2)-N-1
    • 否则,将ans更新为(K*2)-N
  • 打印ans的值作为结果。

下面是上述方法的实现:

C++

// C++ program for the above approach
#include 
using namespace std;
 
// Function to find the Kth element
// in the required permutation
void findKthElement(int N, int K)
{
    // Store the required result
    int ans = 0;
 
    // If K is in the first
    // N / 2 elements, print K * 2
    if (K <= N / 2) {
        ans = K * 2;
    }
 
    // Otherwise, K is greater than N/2
    else {
 
        // If N is even
        if (N % 2 == 0) {
            ans = (K * 2) - N - 1;
        }
 
        // If N is odd
        else {
            ans = (K * 2) - N;
        }
    }
 
    // Print the required result
    cout << ans;
}
 
// Driver Code
int main()
{
    int N = 10, K = 3;
    findKthElement(N, K);
 
    return 0;
}

Java

// Java program for the above approach
import java.io.*;
import java.lang.*;
import java.util.*;
class GFG {
 
  // Function to find the Kth element
  // in the required permutation
  static void findKthElement(int N, int K)
  {
    // Store the required result
    int ans = 0;
 
    // If K is in the first
    // N / 2 elements, print K * 2
    if (K <= N / 2) {
      ans = K * 2;
    }
 
    // Otherwise, K is greater than N/2
    else {
 
      // If N is even
      if (N % 2 == 0) {
        ans = (K * 2) - N - 1;
      }
 
      // If N is odd
      else {
        ans = (K * 2) - N;
      }
    }
 
    // Print the required result
    System.out.println(ans);
  }
 
  // Driver code
  public static void main(String[] args)
  {
 
    int N = 10, K = 3;
 
    // functions call
    findKthElement(N, K);
  }
}
 
// This code is contributed by Kingash.

蟒蛇3

# Python 3 program for the above approach
 
# Function to find the Kth element
# in the required permutation
def findKthElement(N, K):
   
    # Store the required result
    ans = 0
 
    # If K is in the first
    # N / 2 elements, print K * 2
    if (K <= N / 2):
        ans = K * 2
 
    # Otherwise, K is greater than N/2
    else:
       
        # If N is even
        if (N % 2 == 0):
            ans = (K * 2) - N - 1
 
        # If N is odd
        else:
            ans = (K * 2) - N
 
    # Print the required result
    print(ans)
 
# Driver Code
if __name__ == '__main__':
    N = 10
    K = 3
    findKthElement(N, K)
     
    # This code is contributed by ipg2016107.

C#

// C# program for the above approach
using System;
 
class GFG{
 
  // Function to find the Kth element
  // in the required permutation
  static void findKthElement(int N, int K)
  {
     
    // Store the required result
    int ans = 0;
 
    // If K is in the first
    // N / 2 elements, print K * 2
    if (K <= N / 2) {
      ans = K * 2;
    }
 
    // Otherwise, K is greater than N/2
    else {
 
      // If N is even
      if (N % 2 == 0) {
        ans = (K * 2) - N - 1;
      }
 
      // If N is odd
      else {
        ans = (K * 2) - N;
      }
    }
 
    // Print the required result
    Console.Write(ans);
  }
 
  // Driver code
  static void Main()
  {
    int N = 10, K = 3;
 
    // functions call
    findKthElement(N, K);
  }
}
 
// This code is contributed by sanjoy_62.

Javascript


输出
6

时间复杂度: O(1)
辅助空间: O(1)