結果

問題 No.1205 Eye Drops
ユーザー Yug_min_nullYug_min_null
提出日時 2021-09-03 12:22:15
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 514 bytes
コンパイル時間 2,242 ms
コンパイル使用メモリ 198,496 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-12-14 17:17:52
合計ジャッジ時間 4,778 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 37
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
using namespace std;

int main() {
  int N, M; cin >> N >> M;
  map<long long, long long> mp;
  for(int i = 0; i < N; i++){
    long long T; cin >> T;
    long long P; cin >> P;
    mp[T] = P;
  }
  long long time = 0, pos = 0;
  for(auto p: mp){
    long long move = abs(p.second - pos);
    long long time2 = p.first - time;
    if(time2 < move){
      cout << "No" << endl;
      return 0;
    }
    time = p.first, pos = p.second;
  }
  cout << "Yes" << endl;
}
0