結果

問題 No.1205 Eye Drops
ユーザー okok
提出日時 2020-08-30 13:03:49
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 887 bytes
コンパイル時間 730 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-23 20:33:16
合計ジャッジ時間 1,975 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 37
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<iomanip>
#include<cmath>
#include<vector>
#include<algorithm>
#include<utility>

using namespace std;

#define int long long
#define endl "\n"

constexpr long long INF = (long long)1e18;
constexpr long long MOD = 1'000'000'007; 

struct fast_io {
	fast_io(){
		std::cin.tie(nullptr);
		std::ios::sync_with_stdio(false);
	};
} fio;

#define T first
#define P second

signed main(){
	cout<<fixed<<setprecision(10);
	
    int N, M;
    vector<pair<int,int>> in;
    
    cin>>N>>M;
    
    in.resize(M+1);
    
    in[0].T = 0;
    in[0].P = 0;
    
    for(int i = 1; i <= M; i++){
        cin>>in[i].T>>in[i].P;
        
        if(i) {
               if(in[i].T - in[i-1].T < abs(in[i].P - in[i-1].P)) {
                   cout<<"No"<<endl;
                   return 0;
               }
        }
    }

cout<<"Yes"<<endl;
	
	
	
	return 0;
}
0