CodeChef: Codechef
Site under maintenance
  • Register
  • Forgot Password?
  • PRACTICE
    • Easy
    • Medium
    • Hard
  • COMPETE
    • August Mini Challenge
    • August Algorithm Challenge
    • July Algorithm Challenge
    • June Algorithm Challenge
    • May Gamers Challenge
  • DISCUSS
    • Forums
    • Blog
    • Twitter
  • COMMUNITY
    • CodeChef TechTalks
    • CodeChef Meetups
    • Campus Chapters
    • Host Your Contest
    • User Groups
  • HELP
    • Frequently Asked Questions
    • FAQ for Problem Setters
    • Tutorial: Paying Up
    • Tutorial: Small Factorials
    • Tutorial: Input and Output(I/O)
    • Tutorial: Your First Non-Trivial Problem
  • ABOUT
    • About CodeChef
    • About Directi
    • CEO's Corner
    • Press Room
    • Careers

Home » Problems (easy) » Gravel

Gravel

Problem code: SPREAD

  • Submit
  • All submissions

All submissions for this problem are available.

Bob has n heap(s) of gravel (initially there are exactly c piece(s) in each). He wants to do m operation(s) with that heaps, each maybe:

  • adding pieces of gravel onto the heaps from u to v, exactly k pieces for each,
  • or querying "how many pieces of gravel are there in the heap p now?".

Request

Help Bob do operations of the second type.

Input

  • The first line contains the integers n,m,c, respectively.
  • m following lines, each forms:
    • S u v k to describe an operation of the first type.
    • Q p to describe an operation of the second type.

  • (Each integer on a same line, or between the characters S, Q and the integers is separated by at least one space character)

    Output

    For each operation of the second type, output (on a single line) an integer answering to the respective query (follows the respective Input order).

    Example

    Input:
    7 5 0
    Q 7
    S 1 7 1
    Q 3
    S 1 3 1
    Q 3
    
    Output:
    0
    1
    2
    

    Limitations

    • 0<n≤106
    • 0<m≤250 000
    • 0<u≤v≤n
    • 0≤c,k≤109
    • 0<p≤n

    • Date:2010-05-05
      Time limit:2s
      Source limit:50000B
      Languages:All except: SCALA HASK ERL CAML CLPS PRLG WSPC BF ICK JS


  • Submit

Comments

Loading Comments...

SUCCESSFUL SUBMISSIONS FOR THIS PROBLEM:

Loading Submissions...

RECENT ACTIVITY FOR THIS PROBLEM:

Loading Recent Activity...

HELP

Program should read from standard input and write to standard output.

After you submit a solution you can see your results by clicking on the [My Submissions] tab on the problem page. Below are the possible results:

  • Accepted Your program ran successfully and gave a correct answer. If there is a score for the problem, this will be displayed in parenthesis next to the checkmark.
  • Time Limit Exceeded Your program was compiled successfully, but it didn't stop before time limit. Try optimizing your approach.
  • Wrong Answer Your program compiled and ran succesfully but the output did not match the expected output.
  • Runtime Error Your code compiled and ran but encountered an error. The most common reasons are using too much memory or dividing by zero. For the specific error codes see the help section.
  • Compilation Error Your code was unable to compile. When you see this icon, click on it for more information.

If you are still having problems, see a sample solution here.

  • About CodeChef
  • About Directi
  • CEO's Corner
  • Careers
  • feedback@codechef.com

© 2009 Directi Group. All Rights Reserved. CodeChef uses SPOJ © by Sphere Research Labs

Sponsors
The time now is: