Submission #3400989


Source Code Expand

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

int main() {
//  freopen("in.txt", "r", stdin);
//  freopen("out.txt", "w", stdout);
  int n;
  cin >> n;
  int x[n + 1], y[n + 1], t[n + 1];
  t[0] = x[0] = y[0] = 0;

  for(int i = 1;i <= n;i++){
    cin >> t[i] >> x[i] >> y[i];
  }
  for(int i = 1;i <= n;i++){
    if(t[i] - t[i - 1] >= abs(x[i] - x[i - 1]) + abs(y[i] - y[i - 1])
    && (t[i] - t[i - 1]) % 2 == (abs(x[i] - x[i - 1]) + abs(y[i] - y[i - 1])) % 2){

    }else{
    cout << "No";
    return 0;
    }
  }
  cout << "Yes";
  return 0;
}

Submission Info

Submission Time
Task C - Traveling
User Omar_Elawady
Language C++14 (GCC 5.4.1)
Score 300
Code Size 598 Byte
Status AC
Exec Time 88 ms
Memory 1408 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 3
AC × 13
Set Name Test Cases
Sample 0_000.txt, 0_001.txt, 0_002.txt
All 0_000.txt, 0_001.txt, 0_002.txt, 1_003.txt, 1_004.txt, 1_005.txt, 1_006.txt, 1_007.txt, 1_008.txt, 1_009.txt, 1_010.txt, 1_011.txt, 1_012.txt
Case Name Status Exec Time Memory
0_000.txt AC 1 ms 256 KB
0_001.txt AC 1 ms 256 KB
0_002.txt AC 1 ms 256 KB
1_003.txt AC 1 ms 256 KB
1_004.txt AC 88 ms 1408 KB
1_005.txt AC 84 ms 1408 KB
1_006.txt AC 72 ms 1408 KB
1_007.txt AC 12 ms 384 KB
1_008.txt AC 1 ms 256 KB
1_009.txt AC 16 ms 512 KB
1_010.txt AC 1 ms 256 KB
1_011.txt AC 10 ms 384 KB
1_012.txt AC 1 ms 256 KB