結果

問題 No.1557 Binary Variable
ユーザー the-xinthe-xin
提出日時 2021-07-09 20:08:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 633 ms
コンパイル使用メモリ 69,632 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-07-01 14:06:24
合計ジャッジ時間 6,959 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
6,784 KB
testcase_01 AC 143 ms
6,656 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 100 ms
6,784 KB
testcase_05 AC 99 ms
6,912 KB
testcase_06 AC 92 ms
6,656 KB
testcase_07 AC 95 ms
6,784 KB
testcase_08 AC 109 ms
6,656 KB
testcase_09 AC 112 ms
6,784 KB
testcase_10 AC 125 ms
6,912 KB
testcase_11 AC 124 ms
6,784 KB
testcase_12 AC 111 ms
6,784 KB
testcase_13 AC 126 ms
6,784 KB
testcase_14 AC 141 ms
6,784 KB
testcase_15 AC 126 ms
6,656 KB
testcase_16 AC 139 ms
6,784 KB
testcase_17 AC 139 ms
6,912 KB
testcase_18 AC 136 ms
6,784 KB
testcase_19 AC 152 ms
6,784 KB
testcase_20 AC 151 ms
6,784 KB
testcase_21 AC 150 ms
6,784 KB
testcase_22 AC 151 ms
6,784 KB
testcase_23 AC 152 ms
6,784 KB
testcase_24 AC 156 ms
6,656 KB
testcase_25 AC 156 ms
6,912 KB
testcase_26 AC 159 ms
6,656 KB
testcase_27 AC 161 ms
6,784 KB
testcase_28 AC 164 ms
6,784 KB
testcase_29 AC 173 ms
6,784 KB
testcase_30 AC 171 ms
6,784 KB
testcase_31 AC 175 ms
6,912 KB
testcase_32 AC 171 ms
6,784 KB
testcase_33 AC 148 ms
6,656 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstring>
#include<algorithm>
using namespace std;
const int N = 1e6+10,mod=998244353;
typedef long long LL;
struct Node{
	LL l,r;
	bool operator<(const Node &a)const{
		return r<a.r;
	}
}node[N];
int main(){
	LL n,m;
	scanf("%lld%lld",&n,&m);
	for(int i=1;i<=m;i++){
		cin>>node[i].l>>node[i].r;
	}
	sort(node+1,node+1+m);
	LL ed=-2e9-10,res=0;
    for(int i=1;i<=m;i++){
        if(node[i].l>ed){
            res++;
            ed=node[i].r;
        }
    }
	cout<<n-res;
	return 0;
}
0