結果
問題 | No.568 じゃんじゃん 落とす 委員会 |
ユーザー | Hyado |
提出日時 | 2019-06-17 14:13:48 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,510 bytes |
コンパイル時間 | 1,562 ms |
コンパイル使用メモリ | 174,580 KB |
実行使用メモリ | 7,296 KB |
最終ジャッジ日時 | 2024-11-27 11:23:17 |
合計ジャッジ時間 | 4,576 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 84 ms
7,168 KB |
testcase_01 | AC | 84 ms
7,296 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | RE | - |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | AC | 86 ms
7,040 KB |
testcase_14 | AC | 82 ms
7,040 KB |
testcase_15 | WA | - |
testcase_16 | AC | 79 ms
6,912 KB |
testcase_17 | AC | 79 ms
6,912 KB |
testcase_18 | AC | 80 ms
6,912 KB |
testcase_19 | AC | 81 ms
7,168 KB |
testcase_20 | AC | 81 ms
6,912 KB |
testcase_21 | AC | 80 ms
6,816 KB |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
6,816 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define fi first #define se second #define pb push_back #define all(v) (v).begin(),(v).end() ll mod = 1000000007; ll INF = 1000000099; //cin.tie(0); //ios::sync_with_stdio(false); signed main(){ ll n,m,nk=0,sk=0,ans=INF; cin>>n>>m; ll cnt[n];//index i番目の完答数 vector<pair<ll,ll>> f(n),s(n); for(int i=0;i < n;i++) { cin>>cnt[i]; cnt[i]++; cin>>f.at(i).fi>>s.at(i).fi; f.at(i).se=i; s.at(i).se=i; if(cnt[i]>=3){ sk++; nk++; }else if(cnt[i]>=2){ nk++; } } sort(f.begin(),f.end()); sort(s.begin(),s.end()); ll l=0,r=n; for(int l=0;l < n;l++) { if(l>0){ cnt[f.at(l-1).se]--; if(cnt[f.at(l-1).se]==2){ sk--; }else if(cnt[f.at(l-1).se]==1){ nk--; } if(f.at(l-1).fi==f.at(l).fi){ continue; } } while(m>nk || (r<n-1 &&s.at(r).fi==s.at(r+1).fi)){ if(r>-1) r--; else break; if(r<n-1){ cnt[s.at(r+1).se]++; if(cnt[s.at(r+1).se]==3){ sk++; }else if(cnt[s.at(r+1).se]==2){ nk++; } } } //if(ans>sk)cout << l<<r << endl; ans=min(ans,sk); } cout << ans << endl; }