結果

問題 No.674 n連勤
ユーザー llllll
提出日時 2018-04-14 00:18:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,359 bytes
コンパイル時間 859 ms
コンパイル使用メモリ 96,340 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-26 22:01:04
合計ジャッジ時間 15,341 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 TLE -
testcase_15 WA -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <cstring>
#include <deque>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <string>
#include <unordered_map>
#include <vector>

using namespace std;
using ll = long long;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);

    ll D;
    int Q;
    vector<pair<ll, ll>> vec;

    cin >> D >> Q;
    ll prev = -1;
    for (int i = 0; i < Q; i++) {
        ll A, B;
        cin >> A >> B;

        ll minA = A;
        ll maxB = B;
        for (auto p : vec) {
            if (p.first == -1 || p.second == -1) {
                continue;
            }
            if ((p.first - 1 <= B && B <= p.second + 1) ||
                (p.first - 1 <= A && A <= p.second + 1)) {
                minA = min(minA, min(A, p.first));
                maxB = max(maxB, max(B, p.second));
            }
            p.first = -1;
            p.second = -1;
        }
        vec.push_back(pair<ll, ll>(minA, maxB));

        // ll ans = 0;
        // for (auto p : vec) {
        //     if (p.first == -1 || p.second == -1)
        //         continue;
        //     ans = max(ans, p.second - p.first);
        // }
        // cout << ans + 1 << endl;

        ll ans = max(prev, (maxB - minA)) + 1;
        cout << ans << endl;
        prev = ans;
    }

    return 0;
}
0