結果

問題 No.151 セグメントフィッシング
ユーザー mayoko_mayoko_
提出日時 2015-02-12 23:45:10
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 505 ms / 5,000 ms
コード長 1,202 bytes
コンパイル時間 2,272 ms
コンパイル使用メモリ 73,156 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 19:24:17
合計ジャッジ時間 6,332 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <sstream>
#include <string>
#include <vector>
#include <map>
#include <algorithm>
#include <iostream>
#include <utility>
#include <set>
#include <cctype>
#include <queue>
#include <stack>
#include <cstdio>
#include <cstdlib>
#include <cmath>

using namespace std;
typedef long long ll;

const int MAXN = 20020;
ll state[2][MAXN];
ll Next[2][MAXN];

int main(void) {
    int N, Q;
    cin >> N >> Q;
    while (Q--) {
        char x;
        int y, z;
        cin >> x;
        cin >> y >> z;
        if (x == 'R') {
            state[1][y] += z;
        } else if (x == 'L') {
            state[0][y] += z;
        } else {
            ll sum = 0;
            for (int i = y; i < z; i++) {
                sum += state[0][i] + state[1][i];
            }
            cout << sum << endl;
        }
        for (int i = 1; i < N; i++) {
            Next[1][i] = state[1][i-1];
        }
        Next[1][0] = state[0][0];
        for (int i = 0; i < N-1; i++) {
            Next[0][i] = state[0][i+1];
        }
        Next[0][N-1] = state[1][N-1];
        for (int i = 0; i < N; i++) {
            state[0][i] = Next[0][i];
            state[1][i] = Next[1][i];
        }
    }
    return 0;
}
0