# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1104503 | hickwhither | Zemljište (COCI22_zemljiste) | C++17 | 1 ms | 504 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
#include <algorithm>
using namespace std;
#define minimize(a,b) a=min(a,b)
int64_t ans = 1e18;
int n, m, a, b;
int x;
int64_t ps[503][503];
int64_t s[503];
int64_t toQ(int64_t x){
// cout << x << '\n';
return abs(x-a) + abs(x-b);
}
signed main()
{
cin.tie(0) -> sync_with_stdio(0);
// if(fopen("DAUTU.inp", "r")){
// freopen("DAUTU.inp", "r",stdin);
// freopen("DAUTU.out", "w",stdout);
// }
cin >> n >> m >> a >> b; if(a>b)swap(a,b);
for(int i=1; i<=n; ++i)
for(int j=1; j<=m; ++j){
cin >> x;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |