█████████ ████ ███░░░░░███ ░░███ ███ ░░░ ██████ ███████ ██████ ██████ ░███ ███░░███ ███░░███ ███░░███ ███░░███ ░███ ░███ ░███░███ ░███ ░███████ ░███ ░███ ░░███ ███░███ ░███░███ ░███ ░███░░░ ░███ ░███ ░░█████████ ░░██████ ░░████████░░██████ ░░██████ ░░░░░░░░░ ░░░░░░ ░░░░░░░░ ░░░░░░ ░░░░░░

Envío 576

Problema 0x25 - Suma de un subarreglo grande

  • Autor: Mejibyte
  • Fecha: 2020-09-08 02:49:29 UTC (Hace más de 3 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.005 s 5 KBi
#2
Correcto
0.005 s 7 KBi
#3
Correcto
0.005 s 7 KBi
#4
Correcto
0.006 s 6 KBi
#5
Correcto
0.005 s 5 KBi
#6
Correcto
0.006 s 5 KBi
#7
Correcto
0.006 s 50 KBi
#8
Correcto
0.181 s 8 KBi
#9
Tiempo límite excedido
0.471 s 16 KBi
#10
Tiempo límite excedido
0.389 s 9 KBi
#11
Tiempo límite excedido
1.011 s 31 KBi
#12
Tiempo límite excedido
0.952 s 13 KBi
#13
Tiempo límite excedido
0.43 s 9 KBi
#14
Tiempo límite excedido
0.364 s 9 KBi
Puntos totales: 58 / 100

Código

// Solution to https://codeo.app/problemas/0x25-suma-de-un-subarreglo
package main

import (
	"fmt"
)

func solve(a, s []int, p, q int) {
	// O(1)
	sum := s[q] // a[0] + a[1] + ... + a[q]
	if p-1 >= 0 {
		sum -= s[p-1]
	}

	// Alternatively, this works too, and some people might like it more.
	// sum := s[q] - s[p] + a[p];
	fmt.Println(sum)
}

func main() {
	var n int
	fmt.Scanf("%d", &n)

	a := make([]int, n)
	s := make([]int, n)
	sum := 0
	for i := 0; i < n; i++ {
		fmt.Scanf("%d", &a[i])
		sum += a[i]
		s[i] = sum
	}

	// s[i] = sum of a[0] + ... + a[i]
	var c int
	fmt.Scanf("%d", &c)

	for k := 0; k < c; k++ {
		var p, q int
		fmt.Scanf("%d %d", &p, &q)
		solve(a, s, p, q)
	}
}