結果

問題 No.2930 Larger Mex
ユーザー rotti_coderrotti_coder
提出日時 2024-10-12 16:03:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 363 ms / 2,000 ms
コード長 2,433 bytes
コンパイル時間 990 ms
コンパイル使用メモリ 86,636 KB
実行使用メモリ 20,784 KB
最終ジャッジ日時 2024-10-12 16:03:49
合計ジャッジ時間 17,186 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 4 ms
5,248 KB
testcase_04 AC 4 ms
5,248 KB
testcase_05 AC 5 ms
5,248 KB
testcase_06 AC 4 ms
5,248 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 273 ms
5,376 KB
testcase_09 AC 280 ms
5,632 KB
testcase_10 AC 287 ms
5,376 KB
testcase_11 AC 236 ms
5,248 KB
testcase_12 AC 313 ms
8,960 KB
testcase_13 AC 326 ms
6,528 KB
testcase_14 AC 311 ms
11,392 KB
testcase_15 AC 331 ms
9,436 KB
testcase_16 AC 313 ms
9,692 KB
testcase_17 AC 357 ms
9,384 KB
testcase_18 AC 307 ms
9,464 KB
testcase_19 AC 356 ms
11,244 KB
testcase_20 AC 331 ms
10,972 KB
testcase_21 AC 353 ms
10,184 KB
testcase_22 AC 339 ms
15,196 KB
testcase_23 AC 314 ms
10,528 KB
testcase_24 AC 345 ms
9,624 KB
testcase_25 AC 325 ms
19,184 KB
testcase_26 AC 280 ms
7,712 KB
testcase_27 AC 233 ms
6,016 KB
testcase_28 AC 260 ms
6,584 KB
testcase_29 AC 243 ms
6,400 KB
testcase_30 AC 264 ms
5,248 KB
testcase_31 AC 235 ms
5,248 KB
testcase_32 AC 267 ms
6,272 KB
testcase_33 AC 273 ms
5,248 KB
testcase_34 AC 300 ms
10,192 KB
testcase_35 AC 204 ms
7,296 KB
testcase_36 AC 308 ms
8,552 KB
testcase_37 AC 281 ms
8,576 KB
testcase_38 AC 337 ms
12,828 KB
testcase_39 AC 336 ms
9,988 KB
testcase_40 AC 325 ms
10,052 KB
testcase_41 AC 275 ms
10,264 KB
testcase_42 AC 253 ms
5,248 KB
testcase_43 AC 247 ms
5,248 KB
testcase_44 AC 253 ms
6,176 KB
testcase_45 AC 251 ms
6,144 KB
testcase_46 AC 231 ms
5,248 KB
testcase_47 AC 254 ms
5,248 KB
testcase_48 AC 169 ms
5,248 KB
testcase_49 AC 245 ms
5,248 KB
testcase_50 AC 334 ms
8,880 KB
testcase_51 AC 363 ms
14,544 KB
testcase_52 AC 343 ms
20,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<queue>
using namespace std;
//遅延セグ木(自作)
class seguki{
public:
  //1index
  vector<int>num;
  int siz=1;
  void init(int n){
    while(siz<n)siz*=2;
    for (int i=0;i<siz*2+1;i++)num.emplace_back(0);
  }
  int access(int a){
    a=siz+a-1;
    return num[a];
  }
  //a,b半開区間
  //mx_num(求めたい区間の半開区間(1~5だったら1,6),1,seguki.siz+1(セルのすべての半開区間),1(スタート地点のセル1))
  int mx_num(int l,int r,int a,int b,int u){
    if(r<=a || b<=l)return 0;
    else if(l<=a && b<=r)return num[u];
    int m=(a+b)/2;
    int L=mx_num(l,r,a,m,u*2);
    int R=mx_num(l,r,m,b,u*2+1);
    return L+R;
  }

  void haiti(int l,int r,int a,int b,int u,int num2){
    if(r<=a || b<=l)return ;
    else if(l<=a && b<=r){
      num[u]+=num2;
      return ;
    }
    int m=(a+b)/2;
    haiti(l,r,a,m,u*2,num2);
    haiti(l,r,m,b,u*2+1,num2);
  }

  void orosu(int a){
    if(a>=num.size())return;
    num[a*2]+=num[a];
    num[a*2+1]+=num[a];
    orosu(a*2);
    orosu(a*2+1);
  }
};
int main()
{
  int n,m;
  cin >> n >> m;
  if(m==0){
    for(int i=0;i<n;i++)cout << n-i << endl;
    return 0;
  }
  vector<int>a(n);
  for(int i=0;i<n;i++)cin >> a[i];
  vector<vector<int>>num(m+1);
  for(int i=0;i<n;i++)if(a[i]<m)num[a[i]].emplace_back(i+1);
  priority_queue<pair<int,int>,vector<pair<int,int>>,greater<pair<int,int>>>prq;
  int must=0;
  for(int i=0;i<m;i++){
    if(num[i].size()==0){
      for(int i=0;i<n;i++)cout << 0 << endl;
      return 0;
    }
    prq.push(make_pair(num[i][0],i));
    must=max(must,num[i][0]);
  }
  seguki ans;
  ans.init(n+1);
  bool ok=true;
  for(int t=1;t<=n;t++){
    while(prq.top().first<t){
      pair<int,int>hako=prq.top();
      prq.pop();
      int left=-1,right=num[hako.second].size();
      while(left+1!=right){
        int mokuteki=(left+right)/2;
        if(num[hako.second][mokuteki]<=hako.first)left=mokuteki;
        else right=mokuteki;
      }
      if(right==num[hako.second].size()){
        ok=false;
        break;
      }
      prq.push(make_pair(num[hako.second][right],hako.second));
      must=max(must,num[hako.second][right]);
    }
    if(ok==false)break;
    //ここまででどこまで取ればM未満が埋まるかが分かる。
    ans.haiti(must-t+1,n-t+2,1,ans.siz+1,1,1);
  }
  ans.orosu(1);
  for(int i=0;i<n;i++)cout << ans.access(i+1) << endl;
}
0