結果
問題 | No.1557 Binary Variable |
ユーザー | homer12 |
提出日時 | 2021-06-25 22:06:08 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 71 ms / 2,000 ms |
コード長 | 1,780 bytes |
コンパイル時間 | 2,363 ms |
コンパイル使用メモリ | 210,392 KB |
実行使用メモリ | 9,196 KB |
最終ジャッジ日時 | 2024-06-25 08:28:05 |
合計ジャッジ時間 | 6,259 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
8,684 KB |
testcase_01 | AC | 56 ms
7,532 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 57 ms
8,044 KB |
testcase_05 | AC | 56 ms
8,304 KB |
testcase_06 | AC | 60 ms
8,300 KB |
testcase_07 | AC | 56 ms
7,792 KB |
testcase_08 | AC | 59 ms
8,936 KB |
testcase_09 | AC | 60 ms
7,528 KB |
testcase_10 | AC | 65 ms
8,044 KB |
testcase_11 | AC | 62 ms
8,944 KB |
testcase_12 | AC | 60 ms
8,044 KB |
testcase_13 | AC | 64 ms
8,556 KB |
testcase_14 | AC | 63 ms
8,812 KB |
testcase_15 | AC | 61 ms
7,912 KB |
testcase_16 | AC | 64 ms
8,552 KB |
testcase_17 | AC | 63 ms
7,528 KB |
testcase_18 | AC | 63 ms
7,916 KB |
testcase_19 | AC | 65 ms
7,792 KB |
testcase_20 | AC | 64 ms
7,532 KB |
testcase_21 | AC | 65 ms
8,296 KB |
testcase_22 | AC | 67 ms
8,044 KB |
testcase_23 | AC | 66 ms
7,656 KB |
testcase_24 | AC | 67 ms
8,812 KB |
testcase_25 | AC | 67 ms
7,916 KB |
testcase_26 | AC | 67 ms
7,788 KB |
testcase_27 | AC | 68 ms
8,172 KB |
testcase_28 | AC | 69 ms
7,788 KB |
testcase_29 | AC | 71 ms
9,196 KB |
testcase_30 | AC | 71 ms
8,040 KB |
testcase_31 | AC | 69 ms
8,424 KB |
testcase_32 | AC | 70 ms
7,532 KB |
testcase_33 | AC | 64 ms
7,532 KB |
testcase_34 | AC | 2 ms
6,940 KB |
testcase_35 | AC | 2 ms
6,944 KB |
testcase_36 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long int; using iPair = pair<int,int>; using lPair = pair<ll, ll>; using ivector = vector<int>; using lvector = vector<ll>; using istack = stack<int>; using iqueue = queue<int>; using ivv = vector<vector<int>>; using lvv = vector<vector<ll>>; const int INF = 0x3f3f3f3f; const ll LINF = 0x3f3f3f3f3f3f3f3f; vector<iPair> dir = {{1,0}, {-1,0}, {0,1}, {0,-1}}; #define dump(x) cout << #x << " = " << (x) << endl #define ALL(x) begin(x),end(x) #define rep(i,s,e) for(ll i=(s), i_stop=(e); i<i_stop; ++i) #define repRev(i,s,e) for(ll i=(e)-1, i_stop=(s); i>=i_stop; --i) #define range(i,s,n) for(ll i=(s), i_stop=(s)+(n); i<i_stop; ++i) #define rangeRev(i,s,n) for(ll i=(s), i_stop=(s)-(n); i>i_stop; --i) #define foreach(x,container) for(auto &&x:container) template<typename S, typename T> bool chmax(T& a, S b) {b = (T)b; if(a<b) {a=b;return true;} return false;} template<typename S, typename T> bool chmin(T& a, S b) {b = (T)b; if(a>b) {a=b;return true;} return false;} template<typename T> void printArr(vector<T> &arr){ for(auto &x:arr) {cout << x << " ";} cout << endl; } // =====================================================> bool compare(const lPair &a, const lPair &b) { if(a.second == b.second) return a.first < b.first; return a.second < b.second; } void solve() { ll n,m; cin>>n>>m; vector<lPair> vec; range(i,1,m) {ll x,y; cin>>x>>y; vec.emplace_back(x, y);} sort(vec.begin(), vec.end(), compare); ll t = 0; ll ans = 0; for(ll i = 0; i < m; ++i) { if(vec[i].first > t) { t = vec[i].second; ++ans; } } cout << n-ans << endl; } int main(){ ios::sync_with_stdio(false); cin.tie(0); solve(); return 0; }