# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
846133 |
2023-09-07T11:26:22 Z |
vjudge1 |
ČVENK (COI15_cvenk) |
C++17 |
|
76 ms |
33360 KB |
#include <bits/stdc++.h>
#define endl "\n"
#define pb push_back
#define int long long
using namespace std;
const int inf = 2e18 + 5;
const int N = 2e5 + 5;
const int mod = 1e9 + 7;
int32_t main(){
//freopen("in.txt","r", stdin);
int n;
cin>>n;
vector<array<int, 2> > a(n);
for(int i = 0; i < n; i++){
cin>>a[i][0]>>a[i][1];
}
vector<vector<vector<int> > > go(500, vector<vector<int> >(500, vector<int>(2)));
int sum = 0, mxx = 0, mxy = 0;
for(int i = 0; i < n; i++){
int x = a[i][0], y = a[i][1];
sum = (sum + x + y);
mxx = max(mxx, x);
mxy = max(mxy, y);
while(x > 0 || y > 0){
if(x == 0){
go[x][y-1][1]++;
y--;
}
else if(y == 0){
go[x-1][y][0]++;
x--;
}
else if((x-1)&y){
go[x][y-1][1]++;
y--;
}
else{
go[x-1][y][0]++;
x--;
}
}
}
int ans = sum;
queue<array<int, 3> > q;
q.push({0, 0, sum});
while(!q.empty()){
int x = q.front()[0], y = q.front()[1], val = q.front()[2];
q.pop();
ans = min(ans, val);
if(!((x+1)&y) && x < mxx){
q.push({x+1, y, val - go[x][y][0] + (n - go[x][y][0])});
}
if(!(x&(y+1)) && y < mxy){
q.push({x, y+1, val - go[x][y][1] + (n - go[x][y][1])});
}
}
cout<<ans<<endl;
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
21 ms |
28240 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
21 ms |
28248 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
62 ms |
16352 KB |
Output is correct |
2 |
Correct |
60 ms |
16208 KB |
Output is correct |
3 |
Correct |
44 ms |
16208 KB |
Output is correct |
4 |
Correct |
45 ms |
16208 KB |
Output is correct |
5 |
Correct |
46 ms |
16208 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
76 ms |
33360 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |