File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed
src/main/kotlin/g3401_3500
s3492_maximum_containers_on_a_ship
s3494_find_the_minimum_amount_of_time_to_brew_potions
s3495_minimum_operations_to_make_array_elements_zero Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
package g3401_3500.s3492_maximum_containers_on_a_ship
2
2
3
- // #Easy #2025_03_23_Time_0_ms_(100.00%)_Space_40.86_MB_(89.29%)
3
+ // #Easy #Math # 2025_03_23_Time_0_ms_(100.00%)_Space_40.86_MB_(89.29%)
4
4
5
5
import kotlin.math.min
6
6
Original file line number Diff line number Diff line change 1
1
package g3401_3500.s3493_properties_graph
2
2
3
- // #Medium #2025_03_23_Time_45_ms_(100.00%)_Space_65.05_MB_(60.00%)
3
+ // #Medium #Array #Hash_Table #Depth_First_Search #Breadth_First_Search #Graph #Union_Find
4
+ // #2025_03_23_Time_45_ms_(100.00%)_Space_65.05_MB_(60.00%)
4
5
5
6
import java.util.BitSet
6
7
Original file line number Diff line number Diff line change 1
1
package g3401_3500.s3494_find_the_minimum_amount_of_time_to_brew_potions
2
2
3
- // #Medium #2025_03_23_Time_70_ms_(100.00%)_Space_50.98_MB_(100.00%)
3
+ // #Medium #Array #Simulation #Prefix_Sum # 2025_03_23_Time_70_ms_(100.00%)_Space_50.98_MB_(100.00%)
4
4
5
5
import kotlin.math.max
6
6
Original file line number Diff line number Diff line change 1
1
package g3401_3500.s3495_minimum_operations_to_make_array_elements_zero
2
2
3
- // #Hard #2025_03_23_Time_12_ms_(100.00%)_Space_105.09_MB_(100.00%)
3
+ // #Hard #Array #Math #Bit_Manipulation # 2025_03_23_Time_12_ms_(100.00%)_Space_105.09_MB_(100.00%)
4
4
5
5
class Solution {
6
6
fun minOperations (queries : Array <IntArray >): Long {
You can’t perform that action at this time.
0 commit comments