結果
問題 | No.2197 Same Dish |
ユーザー | FplusFplusF |
提出日時 | 2023-01-20 22:19:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 84 ms / 2,000 ms |
コード長 | 1,074 bytes |
コンパイル時間 | 2,685 ms |
コンパイル使用メモリ | 211,216 KB |
実行使用メモリ | 5,996 KB |
最終ジャッジ日時 | 2024-06-23 10:16:41 |
合計ジャッジ時間 | 3,984 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 12 ms
5,376 KB |
testcase_14 | AC | 74 ms
5,376 KB |
testcase_15 | AC | 81 ms
5,376 KB |
testcase_16 | AC | 54 ms
5,376 KB |
testcase_17 | AC | 48 ms
5,376 KB |
testcase_18 | AC | 83 ms
5,376 KB |
testcase_19 | AC | 84 ms
5,504 KB |
testcase_20 | AC | 82 ms
5,376 KB |
testcase_21 | AC | 73 ms
5,996 KB |
testcase_22 | AC | 70 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,n) for (int i=0;i<(int)(n);i++) #define all(v) v.begin(),v.end() using ll=long long; using pll=pair<ll,ll>; using tll=tuple<ll,ll,ll>; const ll INF=(1ll<<60); template<class T> void chmin(T &a,T b){ if(a>b){ a=b; } } template<class T> void chmax(T &a,T b){ if(a<b){ a=b; } } ll modpow(ll a,ll b,ll mod){ if(b==0) return 1; ll p=a,ret=1; for(ll i=0;i<=62;i++){ if(b&(1ll<<i)){ ret*=p; ret%=mod; } p=(p%mod)*(p%mod); p%=mod; } return ret; } int main(){ const ll mod=998244353; ll n,k; cin >> n >> k; vector<pll> p(n); rep(i,n) cin >> p[i].first >> p[i].second; sort(all(p)); ll r=1,x=k; priority_queue<ll,vector<ll>,greater<ll>> pq; for(auto &[a,b]:p){ while(!pq.empty()&&pq.top()<=a){ pq.pop(); x++; } r*=x; r%=mod; x=max(0ll,x-1); pq.push(b); } cout << (modpow(k,n,mod)-r+mod)%mod << endl; }