Пожалуйста, прочтите новое правило об ограничении использования AI-инструментов. ×

Super Hard Atlassian OA | How to solve ?

Правка en1, от LovesProgramming, 2024-09-23 16:16:34

This problem was asked recently in Atlassian OA.

Given an array ; in 1 operation you can add + 1 to any element of the array

This operation costs c[i] if you perform this operation on element at index "i"

Find minimum cost to make all array elements distinct

1<=N<=100000

1<=A[i]<=1000000000

1<=c[i]<=100000

Input —

A — [1 2 2] C — [1 100 500]

O/P — 100 — Do +1 operation on second element making the array — [1 3 2]

История

 
 
 
 
Правки
 
 
  Rev. Язык Кто Когда Δ Комментарий
en1 Английский LovesProgramming 2024-09-23 16:16:34 532 Initial revision (published)