Submission #54845159
Source Code Expand
Copy
#include<iostream>#include<string>#include<vector>#include<cmath>#include<algorithm>#include<map>#include<iomanip>#include<set>#include<numeric>#include<bitset>#include<queue>#define rep(i, n) for (long long i = 0; i < (long long)(n); i++)#define all(v) v.begin(), v.end()#define dump(x) cout << #x << " = " << (x) << endl#define YES(n) cout << ((n) ? "YES" : "NO" ) << endl#define Yes(n) cout << ((n) ? "Yes" : "No" ) << endl#define FOR(i,a,b) for(int i=(a);i<(b);++i)#define FORE(x,a) for(auto& (x) : (a) )#define ENDL cout<<endl#define VECCIN(x) for(auto&youso_: (x) )cin>>youso_
#include<iostream> #include<string> #include<vector> #include<cmath> #include<algorithm> #include<map> #include<iomanip> #include<set> #include<numeric> #include<bitset> #include<queue> #define rep(i, n) for (long long i = 0; i < (long long)(n); i++) #define all(v) v.begin(), v.end() #define dump(x) cout << #x << " = " << (x) << endl #define YES(n) cout << ((n) ? "YES" : "NO" ) << endl #define Yes(n) cout << ((n) ? "Yes" : "No" ) << endl #define FOR(i,a,b) for(int i=(a);i<(b);++i) #define FORE(x,a) for(auto& (x) : (a) ) #define ENDL cout<<endl #define VECCIN(x) for(auto&youso_: (x) )cin>>youso_ #define VECCOUT(x) for(auto&youso_: (x) )cout<<youso_<<" ";cout<<endl #define pb(a) push_back(a) #define mp make_pair #define mt make_tuple #define mll map<long long,long long> #define msl map<string,long long> #define pll pair<long long, long long> #define qll queue<long long> #define pqll priority_queue<long long> #define vi vector<int> #define vs vector<string> #define vll vector<long long> #define vvll vector<vector<long long>> using ll = long long; using ull = unsigned long long; using namespace std; const ll MOD = 998244353; const ll INF = 1e18; int main() { ll sx, sy, tx, ty, ans = 0; cin >> sx >> sy >> tx >> ty; ll st = (sx + sy) % 2, tt = (tx + ty) % 2; //cout << st << tt << endl; ll dx = tx - sx, dy = ty - sy; if (dx < 0) { swap(sx, tx); swap(sy, ty); swap(st, tt); } if (!st && sx != tx)sx++; if (tt && sx != tx)tx--; //cout << sx << " " << sy << " " << tx << " " << ty << endl; dx = tx - sx, dy = ty - sy; ll diag = min(abs(dx), abs(dy)); //cout << diag << endl; ans += diag; sx += diag; sy += ((dy > 0) - (dy < 0)) * diag; //cout << sx << " " << sy << " " << tx << " " << ty << endl; if (sx == tx)ans += abs(ty - sy); else ans += abs(tx - sx) / 2 + 1; cout << ans; return 0; }
Submission Info
Submission Time | |
---|---|
Task | C - Tile Distance 2 |
User | Patos1234 |
Language | C++ 20 (gcc 12.2) |
Score | 350 |
Code Size | 1985 Byte |
Status | AC |
Exec Time | 1 ms |
Memory | 3676 KB |
Judge Result
Set Name | Sample | All | ||||
---|---|---|---|---|---|---|
Score / Max Score | 0 / 0 | 350 / 350 | ||||
Status |
|
|
Set Name | Test Cases |
---|---|
Sample | 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt |
All | 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt, 01_random_03.txt, 01_random_04.txt, 01_random_05.txt, 01_random_06.txt, 01_random_07.txt, 01_random_08.txt, 01_random_09.txt, 01_random_10.txt, 01_random_11.txt, 01_random_12.txt, 01_random_13.txt, 01_random_14.txt, 01_random_15.txt, 01_random_16.txt, 01_random_17.txt, 01_random_18.txt, 01_random_19.txt, 01_random_20.txt, 01_random_21.txt, 01_random_22.txt, 01_random_23.txt, 01_random_24.txt, 01_random_25.txt, 01_random_26.txt, 01_random_27.txt, 01_random_28.txt, 01_random_29.txt, 01_random_30.txt, 01_random_31.txt, 01_random_32.txt, 01_random_33.txt, 01_random_34.txt, 01_random_35.txt, 01_random_36.txt, 01_random_37.txt, 01_random_38.txt, 01_random_39.txt, 01_random_40.txt, 01_random_41.txt, 01_random_42.txt, 01_random_43.txt, 01_random_44.txt, 01_random_45.txt, 01_random_46.txt, 01_random_47.txt, 01_random_48.txt |
Case Name | Status | Exec Time | Memory |
---|---|---|---|
00_sample_00.txt | AC | 1 ms | 3512 KB |
00_sample_01.txt | AC | 1 ms | 3524 KB |
00_sample_02.txt | AC | 1 ms | 3464 KB |
01_random_03.txt | AC | 1 ms | 3480 KB |
01_random_04.txt | AC | 1 ms | 3444 KB |
01_random_05.txt | AC | 1 ms | 3536 KB |
01_random_06.txt | AC | 1 ms | 3532 KB |
01_random_07.txt | AC | 1 ms | 3400 KB |
01_random_08.txt | AC | 1 ms | 3404 KB |
01_random_09.txt | AC | 1 ms | 3404 KB |
01_random_10.txt | AC | 1 ms | 3468 KB |
01_random_11.txt | AC | 1 ms | 3480 KB |
01_random_12.txt | AC | 1 ms | 3600 KB |
01_random_13.txt | AC | 1 ms | 3600 KB |
01_random_14.txt | AC | 1 ms | 3524 KB |
01_random_15.txt | AC | 1 ms | 3404 KB |
01_random_16.txt | AC | 1 ms | 3528 KB |
01_random_17.txt | AC | 1 ms | 3532 KB |
01_random_18.txt | AC | 1 ms | 3536 KB |
01_random_19.txt | AC | 1 ms | 3524 KB |
01_random_20.txt | AC | 1 ms | 3596 KB |
01_random_21.txt | AC | 1 ms | 3448 KB |
01_random_22.txt | AC | 1 ms | 3508 KB |
01_random_23.txt | AC | 1 ms | 3676 KB |
01_random_24.txt | AC | 1 ms | 3472 KB |
01_random_25.txt | AC | 1 ms | 3484 KB |
01_random_26.txt | AC | 1 ms | 3468 KB |
01_random_27.txt | AC | 1 ms | 3664 KB |
01_random_28.txt | AC | 1 ms | 3480 KB |
01_random_29.txt | AC | 1 ms | 3440 KB |
01_random_30.txt | AC | 1 ms | 3528 KB |
01_random_31.txt | AC | 1 ms | 3596 KB |
01_random_32.txt | AC | 1 ms | 3672 KB |
01_random_33.txt | AC | 1 ms | 3468 KB |
01_random_34.txt | AC | 1 ms | 3608 KB |
01_random_35.txt | AC | 1 ms | 3488 KB |
01_random_36.txt | AC | 1 ms | 3444 KB |
01_random_37.txt | AC | 1 ms | 3444 KB |
01_random_38.txt | AC | 1 ms | 3528 KB |
01_random_39.txt | AC | 1 ms | 3524 KB |
01_random_40.txt | AC | 1 ms | 3524 KB |
01_random_41.txt | AC | 1 ms | 3532 KB |
01_random_42.txt | AC | 1 ms | 3604 KB |
01_random_43.txt | AC | 1 ms | 3440 KB |
01_random_44.txt | AC | 1 ms | 3428 KB |
01_random_45.txt | AC | 1 ms | 3468 KB |
01_random_46.txt | AC | 1 ms | 3468 KB |
01_random_47.txt | AC | 1 ms | 3404 KB |
01_random_48.txt | AC | 1 ms | 3604 KB |