#define _USE_MATH_DEFINES #include //cin, cout #include //vector #include //sort,min,max,count #include //string,getline, to_string #include //abs(int) #include //swap, pair #include //deque #include //INT_MAX #include //bitset #include //sqrt, ceil. M_PI, pow, sin #include //fixed #include //setprecision #include //stringstream #include //gcd, assumlate #include //randam_device #include //numeric_limits using namespace std; constexpr long long int D_MOD = 1000000007; int main() { int N, M, T, P; cin >> N >> M; int nowP = 0; int nowT = 0; for (int i = 0; i < M; i++) { cin >> T >> P; if (T - nowT < abs(P - nowP)) { cout << "No" << endl; return 0; } else { nowT = T; nowP = P; } } cout << "Yes" << endl; return 0; }