結果
| 問題 | No.568 じゃんじゃん 落とす 委員会 |
| コンテスト | |
| ユーザー |
Tttt Yay
|
| 提出日時 | 2021-03-31 20:27:33 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 3,696 bytes |
| 記録 | |
| コンパイル時間 | 4,031 ms |
| コンパイル使用メモリ | 254,764 KB |
| 最終ジャッジ日時 | 2025-01-20 02:16:39 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 WA * 3 |
ソースコード
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
#define _overload3(_1,_2,_3,name,...) name
#define _rep(i,n) repi(i,0,n)
#define repi(i,a,b) for(int i=int(a);i<int(b);++i)
#define rep(...) _overload3(__VA_ARGS__,repi,_rep,)(__VA_ARGS__)
#define all(x) x.begin(),x.end()
#define SZ(x) ((int)(x).size())
#define PB push_back
#define MP make_pair
#define V vector
#define P pair<int,int>
#define F first
#define S second
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }
using ll = long long;
using ld = long double;
using namespace std;
const int INF =1001001001;
const int INFL =1<<30;
const int MAX = 2e6+1;
const int xx=2555;
template<int MOD> struct Fp {
long long val;
constexpr Fp(long long v = 0) noexcept : val(v % MOD) {
if (val < 0) val += MOD;
}
constexpr int getmod() { return MOD; }
constexpr Fp operator - () const noexcept {
return val ? MOD - val : 0;
}
constexpr Fp operator + (const Fp& r) const noexcept { return Fp(*this) += r; }
constexpr Fp operator - (const Fp& r) const noexcept { return Fp(*this) -= r; }
constexpr Fp operator * (const Fp& r) const noexcept { return Fp(*this) *= r; }
constexpr Fp operator / (const Fp& r) const noexcept { return Fp(*this) /= r; }
constexpr Fp& operator += (const Fp& r) noexcept {
val += r.val;
if (val >= MOD) val -= MOD;
return *this;
}
constexpr Fp& operator -= (const Fp& r) noexcept {
val -= r.val;
if (val < 0) val += MOD;
return *this;
}
constexpr Fp& operator *= (const Fp& r) noexcept {
val = val * r.val % MOD;
return *this;
}
constexpr Fp& operator /= (const Fp& r) noexcept {
long long a = r.val, b = MOD, u = 1, v = 0;
while (b) {
long long t = a / b;
a -= t * b; swap(a, b);
u -= t * v; swap(u, v);
}
val = val * u % MOD;
if (val < 0) val += MOD;
return *this;
}
constexpr bool operator == (const Fp& r) const noexcept {
return this->val == r.val;
}
constexpr bool operator != (const Fp& r) const noexcept {
return this->val != r.val;
}
friend constexpr ostream& operator << (ostream &os, const Fp<MOD>& x) noexcept {
return os << x.val;
}
friend constexpr Fp<MOD> modpow(const Fp<MOD> &a, long long n) noexcept {
if (n == 0) return 1;
auto t = modpow(a, n / 2);
t = t * t;
if (n & 1) t = t * a;
return t;
}
};
const int MOD = 1000000007;
//const int MOD = 998244353;
using mint = Fp<MOD>;
int main() {
int n,m;cin>>n>>m;
V<P> a(n),b(n);
V<int> x(n);
rep(i,n){
int x1,a1,b1;
cin>>x1>>a1>>b1;
x[i]=x1+1;
a[i]=MP(a1,i);
b[i]=MP(b1,i);
}
sort(all(a));
sort(all(b));
int anow=0,bnow=n-1;
int kan2=0,kan3=0;
rep(i,n){
if(x[i]>=2)kan2++;
if(x[i]>=3)kan3++;
}
int ans=INF;
rep(sa,100001){
while(anow<n&&a[anow].first<sa){
x[a[anow].second]--;
if(x[a[anow].second]==1)kan2--;
if(x[a[anow].second]==2)kan3--;
anow++;
}
while(bnow>=0&&kan2<m){
int t=b[bnow].first;
while(b[bnow].first==t){
x[b[bnow].second]++;
if(x[b[bnow].second]==2)kan2++;
if(x[b[bnow].second]==3)kan3++;
bnow--;
}
}
chmin(ans,kan3);
}
cout<<ans<<endl;
return 0;
}
Tttt Yay