結果

問題 No.1675 Strange Minimum Query
ユーザー moondrinkmoondrink
提出日時 2021-09-24 15:04:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 1,291 bytes
コンパイル時間 1,903 ms
コンパイル使用メモリ 181,696 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-07-05 09:44:16
合計ジャッジ時間 9,864 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 79 ms
6,944 KB
testcase_04 AC 98 ms
9,216 KB
testcase_05 AC 54 ms
9,344 KB
testcase_06 AC 89 ms
7,040 KB
testcase_07 AC 108 ms
8,832 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 125 ms
11,648 KB
testcase_11 AC 63 ms
10,240 KB
testcase_12 AC 143 ms
12,800 KB
testcase_13 AC 193 ms
15,744 KB
testcase_14 AC 159 ms
15,812 KB
testcase_15 AC 150 ms
15,872 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 35 ms
6,940 KB
testcase_18 AC 46 ms
6,940 KB
testcase_19 AC 102 ms
12,928 KB
testcase_20 AC 124 ms
11,776 KB
testcase_21 AC 135 ms
13,952 KB
testcase_22 AC 155 ms
14,976 KB
testcase_23 AC 92 ms
8,064 KB
testcase_24 AC 104 ms
10,496 KB
testcase_25 AC 65 ms
7,296 KB
testcase_26 AC 53 ms
7,936 KB
testcase_27 AC 132 ms
14,336 KB
testcase_28 AC 83 ms
11,136 KB
testcase_29 AC 89 ms
12,544 KB
testcase_30 AC 56 ms
8,320 KB
testcase_31 AC 117 ms
9,216 KB
testcase_32 AC 186 ms
15,872 KB
testcase_33 AC 186 ms
16,000 KB
testcase_34 AC 186 ms
15,788 KB
testcase_35 AC 198 ms
15,872 KB
testcase_36 AC 196 ms
16,000 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:30:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   30 |     for(auto [b,l,r] : query)
      |              ^

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

#define endl "\n"
#define all(v) v.begin(), v.end()

const int N = 2e5 + 10;

int n,q;

int main()
{
    scanf("%d %d",&n,&q);
    vector<array<int,3>> query(q);
    set<int> unused;
    set<int> used;
    vector<int> ans(n);
    for(int i = 0;i < n;i ++ ) unused.insert(i);
    for(int i = 0;i < q;i ++ )
    {
        int l,r,b;
        scanf("%d %d %d",&l,&r,&b);
        l --, r --;
        query[i] = {b,l,r};
    }
    sort(all(query));
    reverse(all(query));
    int prev = -1;
    for(auto [b,l,r] : query)
    {
        if(b != prev)
        {
            prev = b;
            used.clear();
        }
        auto itr = unused.lower_bound(l);
        if(itr == unused.end() || *itr > r)
        {
            //auto itr2 = used.lower_bound(l);
            if(used.size() == 0)
            {
                cout << "-1" << endl;
                return 0;
            }
        }
        else
        {
            while(itr != unused.end() && *itr <= r)
            {
                ans[*itr] = b;
                used.insert(*itr);
                itr = unused.erase(itr);
            }
        }
    }
    for(auto i : unused) ans[i] = int(1e9);
    for(int i = 0;i < n;i ++ ) cout << ans[i] << " \n"[i == n - 1];
    return 0;
}
0