# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
42569 | 2018-02-28T08:54:30 Z | nonocut | Adriatic (CEOI13_adriatic) | C++14 | 66 ms | 632 KB |
#include<bits/stdc++.h> using namespace std; #define ll long long #define pii pair<int,int> #define X first #define Y second const int inf = 1e9; const int maxv = 2500; const int maxn = 1e3 + 5; struct node { int x,y,id; }; int n; node p[maxn]; int pos[maxv+5]; vector<pii> way[maxn]; deque<pii> dq; int len[maxn][3]; bool cmp(node a, node b) { if(a.x!=b.x) return a.x<b.x; return a.y>b.y; } ll bfs(int u) { for(int i=1;i<=n;i++) { if(i!=u) len[i][0] = len[i][1] = len[i][2] = inf; else len[i][0] = len[i][1] = len[i][2] = 0; } dq.push_back({u,2}); while(!dq.empty()) { int x = dq.front().X, d = dq.front().Y; dq.pop_front(); // printf("%d %d : %d\n",x,d,len[x][d]); for(auto t : way[x]) { if(d==t.Y && len[t.X][t.Y]>len[x][d]) len[t.X][t.Y] = len[x][d], dq.push_front({t.X,t.Y}); if(d!=t.Y && len[t.X][t.Y]>len[x][d]+1) len[t.X][t.Y] = len[x][d]+1, dq.push_back({t.X,t.Y}); } } ll ans = 0; for(int i=1;i<=n;i++) if(i!=u) ans += min(len[i][0], len[i][1]); return ans; } int main() { scanf("%d",&n); for(int i=1;i<=n;i++) scanf("%d%d",&p[i].x,&p[i].y), p[i].id = i; sort(&p[1],&p[n+1],cmp); for(int i=1;i<=n;i++) { int cur = 0; for(int y=p[i].y-1;y>=1;y--) { if(pos[y]>cur) { cur = pos[y]; way[p[i].id].push_back({p[pos[y]].id,1}); way[p[pos[y]].id].push_back({p[i].id,0}); } } pos[p[i].y] = i; } for(int i=1;i<=n;i++) { printf("%lld\n",bfs(i)); } }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 556 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 23 ms | 616 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 66 ms | 632 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |