Tuesday, May 7, 2013

Codeforces Round #179 (Div. 2) C Greg and Array

//Codeforces Round #179 (Div. 2) C Greg and Array

import java.io.*;
import java.io.ObjectInputStream.GetField;
import java.math.*;
import java.text.*;
import java.util.*;

//Codeforces
public class MainCodeforces1 {
    private static MyScanner in;
    private static PrintStream out;

    private static void solve() throws IOException
    {
        int N = in.nextInt();
        int M = in.nextInt();
        int K = in.nextInt();
        long[] a = new long[N + 1];
        for (int i = 0; i < N; i++) {
            a[i] = in.nextLong();
        }
        int[] L = new int[M + 1];
        int[] R = new int[M + 1];
        int[] D = new int[M + 1];
        for (int i = 0; i < M; i++) {
            L[i] = in.nextInt();
            R[i] = in.nextInt();
            D[i] = in.nextInt();
        }
        int[] X = new int[K + 1];
        int[] Y = new int[K + 1];
        for (int i = 0; i < K; i++) {
            X[i] = in.nextInt();
            Y[i] = in.nextInt();
        }

        int[] mul = new int[M + 1];
        for (int i = 0; i < M; i++) {
            mul[i] = 0;
        }
        for (int i = 0; i < K; i++) {
            mul[X[i] - 1] += 1;
            mul[Y[i]] -= 1;
        }

        long[] addn = new long[N + 1];
        for (int i = 0; i < N; i++) {
            addn[i] = 0;
        }
        long x = 0;
        for (int i = 0; i < M; i++) {
            x += mul[i];
            long dd = x * D[i];
            addn[L[i] - 1] += dd;
            addn[R[i]] -= dd;
        }
        long add = 0;
        for (int i = 0; i < N; i++) {
            add += addn[i];
            a[i] += add;
            if (i > 0)
                out.print(" ");
            out.print(a[i]);
        }
    }

    public static void main(String[] args) throws IOException {
        // helpers for input/output
        boolean LOCAL_TEST = false;// change to false before submitting
        out = System.out;
        if (LOCAL_TEST) {
            in = new MyScanner("E:\\zin.txt");
        }
        else {
            boolean usingFileForIO = false;
            if (usingFileForIO) {
                // using input.txt and output.txt as I/O
                in = new MyScanner("input.txt");
                out = new PrintStream("output.txt");
            }
            else {
                in = new MyScanner();
                out = System.out;
            }
        }

        solve();
    }

    // =====================================
    static class MyScanner {
        Scanner inp = null;

        public MyScanner() throws IOException
        {
            inp = new Scanner(System.in);
        }

        public MyScanner(String inputFile) throws IOException {
            inp = new Scanner(new FileInputStream(inputFile));
        }

        public int nextInt() throws IOException {
            return inp.nextInt();
        }

        public long nextLong() throws IOException {
            return inp.nextLong();
        }

        public double nextDouble() throws IOException {
            return inp.nextDouble();
        }

        public String nextString() throws IOException {
            return inp.next();
        }

    }

}

No comments:

Post a Comment