結果

問題 No.469 区間加算と一致検索の問題
ユーザー kimiyukikimiyuki
提出日時 2016-12-14 01:54:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 609 bytes
コンパイル時間 947 ms
コンパイル使用メモリ 83,188 KB
実行使用メモリ 814,080 KB
最終ジャッジ日時 2024-05-08 06:10:12
合計ジャッジ時間 4,543 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 4 ms
5,632 KB
testcase_03 AC 8 ms
5,376 KB
testcase_04 AC 13 ms
5,504 KB
testcase_05 AC 13 ms
5,376 KB
testcase_06 AC 15 ms
5,504 KB
testcase_07 AC 17 ms
6,400 KB
testcase_08 AC 15 ms
5,504 KB
testcase_09 AC 9 ms
5,376 KB
testcase_10 AC 9 ms
5,376 KB
testcase_11 AC 6 ms
5,376 KB
testcase_12 AC 16 ms
5,504 KB
testcase_13 AC 10 ms
5,376 KB
testcase_14 AC 5 ms
5,376 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 13 ms
5,376 KB
testcase_17 AC 14 ms
5,760 KB
testcase_18 AC 17 ms
6,400 KB
testcase_19 AC 4 ms
5,376 KB
testcase_20 AC 15 ms
5,376 KB
testcase_21 AC 6 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 MLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

// TLE
#include <iostream>
#include <vector>
#include <map>
#define repeat(i,n) for (int i = 0; (i) < int(n); ++(i))
#define repeat_from(i,m,n) for (int i = (m); (i) < int(n); ++(i))
using namespace std;
int main() {
    int n, q; cin >> n >> q;
    vector<int> x(n);
    map<vector<int>, int> f;
    f[x] = 0;
    repeat (t,q) {
        char c; cin >> c;
        if (c == '!') {
            int l, r, k; cin >> l >> r >> k;
            repeat_from (i,l,r) x[i] += k;
            if (not f.count(x)) f[x] = t+1;
        } else if (c == '?') {
            cout << f[x] << endl;
        }
    }
    return 0;
}
0