From fcd9a48335b0f9f798f31ee8e76d7fbffcc577ff Mon Sep 17 00:00:00 2001 From: Tanmay-312 Date: Tue, 11 Jun 2024 10:29:47 +0530 Subject: [PATCH] Added codes for 11 June --- GeeksForGeeks/June/11-6-24/GFG.java | 87 ++++++++++++++++++++++++++++ GeeksForGeeks/June/11-6-24/README.md | 2 + LeetCode/June/11-6-24/README.md | 2 + LeetCode/June/11-6-24/Solution.java | 20 +++++++ 4 files changed, 111 insertions(+) create mode 100644 GeeksForGeeks/June/11-6-24/GFG.java create mode 100644 GeeksForGeeks/June/11-6-24/README.md create mode 100644 LeetCode/June/11-6-24/README.md create mode 100644 LeetCode/June/11-6-24/Solution.java diff --git a/GeeksForGeeks/June/11-6-24/GFG.java b/GeeksForGeeks/June/11-6-24/GFG.java new file mode 100644 index 0000000..3964930 --- /dev/null +++ b/GeeksForGeeks/June/11-6-24/GFG.java @@ -0,0 +1,87 @@ +//{ Driver Code Starts +import java.io.*; +import java.util.*; + +class IntArray { + public static int[] input(BufferedReader br, int n) throws IOException { + String[] s = br.readLine().trim().split(" "); + int[] a = new int[n]; + for (int i = 0; i < n; i++) a[i] = Integer.parseInt(s[i]); + + return a; + } + + public static void print(int[] a) { + for (int e : a) System.out.print(e + " "); + System.out.println(); + } + + public static void print(ArrayList a) { + for (int e : a) System.out.print(e + " "); + System.out.println(); + } +} + +class GFG { + public static void main(String[] args) throws IOException { + BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); + int t; + t = Integer.parseInt(br.readLine()); + while (t-- > 0) { + + int n; + n = Integer.parseInt(br.readLine()); + + int x; + x = Integer.parseInt(br.readLine()); + + int y; + y = Integer.parseInt(br.readLine()); + + int[] arr = IntArray.input(br, n); + + int[] brr = IntArray.input(br, n); + + Solution obj = new Solution(); + long res = obj.maxTip(n, x, y, arr, brr); + + System.out.println(res); + } + } +} + +// } Driver Code Ends + + + +class Solution +{ + public static long maxTip(int n, int x, int y, int[] arr, int[] brr) + { + // code here + int a[][] = new int[n][2]; + for(int i=0; i Math.abs(o2[0] - o2[1]) - Math.abs(o1[0] - o1[1])); + + long ans=0; + for(int i[] : a) + { + if((i[0] > i[1] && x > 0) || (y == 0)) + { + ans += i[0]; + x--; + } + else + { + ans += i[1]; + y--; + } + } + + return ans; + } +} diff --git a/GeeksForGeeks/June/11-6-24/README.md b/GeeksForGeeks/June/11-6-24/README.md new file mode 100644 index 0000000..905c94b --- /dev/null +++ b/GeeksForGeeks/June/11-6-24/README.md @@ -0,0 +1,2 @@ +Time complexity - O(n*logn) +Space complexity - O(n) diff --git a/LeetCode/June/11-6-24/README.md b/LeetCode/June/11-6-24/README.md new file mode 100644 index 0000000..7384c4b --- /dev/null +++ b/LeetCode/June/11-6-24/README.md @@ -0,0 +1,2 @@ +Time complexity - O(n) +Space complexity - O(n) diff --git a/LeetCode/June/11-6-24/Solution.java b/LeetCode/June/11-6-24/Solution.java new file mode 100644 index 0000000..cd4c2f8 --- /dev/null +++ b/LeetCode/June/11-6-24/Solution.java @@ -0,0 +1,20 @@ +class Solution { + public int[] relativeSortArray(int[] arr1, int[] arr2) { + int[] ans = new int[arr1.length]; + int[] count = new int[1001]; + int i = 0; + + for (int a : arr1) + ++count[a]; + + for (int a : arr2) + while (count[a]-- > 0) + ans[i++] = a; + + for (int num = 0; num < 1001; ++num) + while (count[num]-- > 0) + ans[i++] = num; + + return ans; + } +}