結果

問題 No.568 じゃんじゃん 落とす 委員会
ユーザー KKT89KKT89
提出日時 2019-06-17 20:33:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 96 ms / 1,000 ms
コード長 973 bytes
コンパイル時間 765 ms
コンパイル使用メモリ 85,332 KB
実行使用メモリ 12,996 KB
最終ジャッジ日時 2024-11-28 16:07:38
合計ジャッジ時間 3,346 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,996 KB
testcase_01 AC 96 ms
12,992 KB
testcase_02 AC 4 ms
8,216 KB
testcase_03 AC 4 ms
8,132 KB
testcase_04 AC 4 ms
8,132 KB
testcase_05 AC 5 ms
8,128 KB
testcase_06 AC 4 ms
8,128 KB
testcase_07 AC 4 ms
8,136 KB
testcase_08 AC 4 ms
8,132 KB
testcase_09 AC 4 ms
8,136 KB
testcase_10 AC 4 ms
8,212 KB
testcase_11 AC 4 ms
8,132 KB
testcase_12 AC 94 ms
12,736 KB
testcase_13 AC 91 ms
12,868 KB
testcase_14 AC 89 ms
12,740 KB
testcase_15 AC 87 ms
12,740 KB
testcase_16 AC 83 ms
12,692 KB
testcase_17 AC 78 ms
12,612 KB
testcase_18 AC 87 ms
12,612 KB
testcase_19 AC 93 ms
12,744 KB
testcase_20 AC 86 ms
12,868 KB
testcase_21 AC 85 ms
12,612 KB
testcase_22 AC 88 ms
12,992 KB
testcase_23 AC 3 ms
8,136 KB
testcase_24 AC 3 ms
8,132 KB
testcase_25 AC 4 ms
8,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<numeric>
#include<vector>
#include<set>
#include<map>
#include <string>
#include <math.h>
#define cinf(n,x) for(int i=0;i<(n);i++) cin >> x[i];
typedef long long int ll;
using namespace std;

const int MOD = 1000000007;
int cnt[6];
vector<int> a1[100010],b1[100010];
int main(){
  int n,m; cin >>n>>m;
  int ans=1e9;
  vector<int> x(n),a(n),b(n);
  for(int i=0;i<n;i++){
    cin >>x[i] >> a[i] >> b[i];
    a1[a[i]].push_back(i);
    b1[b[i]].push_back(i);
  }
  for(int i=0;i<n;i++){
    x[i]++;
    cnt[x[i]]++;
  }
  int B=100001;
  for(int A=0;A<100002;A++){
    while(cnt[2]+cnt[3]+cnt[4]+cnt[5]<m){
      B--;
      if(B<0)break;
      for(auto i:b1[B]){
        cnt[x[i]]--;
        x[i]++;
        cnt[x[i]]++;
      }
    }
    if(cnt[2]+cnt[3]+cnt[4]+cnt[5]<m)break;
    ans=min(ans,cnt[3]+cnt[4]+cnt[5]);
    for(auto i:a1[A]){
      cnt[x[i]]--;
      x[i]--;
      cnt[x[i]]++;
    }
  }
  cout << ans << endl;
}
0