結果

問題 No.259 セグメントフィッシング+
ユーザー t98slidert98slider
提出日時 2023-02-17 09:38:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 891 bytes
コンパイル時間 645 ms
コンパイル使用メモリ 91,500 KB
最終ジャッジ日時 2024-07-19 05:40:51
合計ジャッジ時間 1,304 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:6:10: error: incomplete type 'std::ios' {aka 'std::basic_ios<char>'} used in nested name specifier
    6 |     ios::sync_with_stdio(false);
      |          ^~~~~~~~~~~~~~~
main.cpp:7:5: error: 'cin' was not declared in this scope
    7 |     cin.tie(0);
      |     ^~~
main.cpp:2:1: note: 'std::cin' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
    1 | #include <atcoder/all>
  +++ |+#include <iostream>
    2 | using namespace std;
main.cpp:31:13: error: 'cout' was not declared in this scope
   31 |             cout << f(l1, r1) + f(l2, r2) << '\n';
      |             ^~~~
main.cpp:31:13: note: 'std::cout' is defined in header '<iostream>'; did you forget to '#include <iostream>'?

ソースコード

diff #

#include <atcoder/all>
using namespace std;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int N, Q, r, t, y, z;
    cin >> N >> Q;
    atcoder::fenwick_tree<ll> fw(2 * N);
    char x;
    auto safe_mod = [&](int v, int mod){
        v %= mod;
        if(v < 0)v += mod;
        return v;
    };
    auto f = [&](int l, int r){
        if(l <= r) return fw.sum(l, r);
        return fw.sum(0, r) + fw.sum(l, 2 * N);
    };
    while(Q--){
        cin >> x >> t >> y >> z;
        if(x != 'C'){
            if(x == 'L') y = 2 * N - 1 - y;
            fw.add(safe_mod(y - t, 2 * N), z);
        }else{
            int l1 = safe_mod(y - t, 2 * N);
            int r1 = safe_mod(z - t, 2 * N);
            int l2 = safe_mod(-z - t, 2 * N);
            int r2 = safe_mod(-y - t, 2 * N);
            cout << f(l1, r1) + f(l2, r2) << '\n';
        }
    }
}
0