結果
問題 | No.2743 Twisted Lattice |
ユーザー | mealy |
提出日時 | 2024-04-21 04:45:54 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,331 bytes |
コンパイル時間 | 6,730 ms |
コンパイル使用メモリ | 337,280 KB |
実行使用メモリ | 91,768 KB |
最終ジャッジ日時 | 2024-10-13 03:12:01 |
合計ジャッジ時間 | 12,738 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 724 ms
91,764 KB |
testcase_01 | WA | - |
testcase_02 | AC | 253 ms
27,104 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,820 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using mint = atcoder::modint998244353; //using mint = atcoder::modint1000000007; using namespace atcoder; using namespace std; using ll = long long; using pi = pair<int,int>; using pl = pair<ll,ll>; using vi = vector<int>; using vm = vector<mint>; using vvi = vector<vi>; using vl = vector<ll>; using vvl = vector<vl>; using vpi = vector<pair<int,int>>; using vpl = vector<pair<ll,ll>>; #define rep(i,n) for (ll i = 0; i < n; i++) #define replr(i,l,r) for (ll i = l; i < r; i++) set<char> abc = {'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'}; const int inf =1e9; const ll infl = 4e18; template <typename T> bool chmax(T &a, const T& b) {if (a < b) {a = b; return true;}return false;} template <typename T> bool chmin(T &a, const T& b) {if (a > b) {a = b; return true;}return false;} template <typename T> T max(vector<T> &v) {T m = 0;for (auto x : v) chmax(m, x);return m;} template <typename T> T min(vector<T> &v) {T m = inf;for (auto x : v) chmin(m, x);return m;} template <typename T> void print(vector<T> &v){for(auto x : v){cout<<x<<' ';}cout<<'\n';} /*memo */ ll op(ll a, ll b){ return min(a,b); } ll e(){ return infl; } int main(){ ll H,W,N; cin >> H >> W >> N; vpl ab(N); vector<tuple<ll,ll,int>> cd(N); rep(i,N){ cin >> ab[i].first >> ab[i].second; get<0>(cd[i])=ab[i].second; get<1>(cd[i])=ab[i].first+ab[i].second; get<2>(cd[i])=i; } sort(cd.begin(),cd.end()); vl dist(N,infl); segtree<ll,op,e> seg(N); rep(i,N){ seg.set(i,get<1>(cd[i])); } rep(i,N){ int ind=get<2>(cd[i]); ll a=ab[ind].first; ll b=ab[ind].second; chmin(dist[ind],seg.prod(i+1,N)+a-b-2); } rep(i,N){ get<0>(cd[i])=ab[i].second; get<1>(cd[i])=ab[i].first-ab[i].second; get<2>(cd[i])=i; } sort(cd.begin(),cd.end(),greater<>()); rep(i,N){ seg.set(i,get<1>(cd[i])); } rep(i,N){ int ind=get<2>(cd[i]); ll a=ab[ind].first; ll b=ab[ind].second; chmin(dist[ind],seg.prod(i+1,N)+a+b-2); } map<ll,vpl> mp; rep(i,N){ mp[ab[i].second].push_back({ab[i].first,i}); } for (auto [key,x] : mp){ sort(mp[key].begin(),mp[key].end()); } for(auto [key,x] : mp){ rep(i,x.size()-1){ ll a=x[i].first; ll b=x[i+1].first; ll ind1=x[i].second; ll ind2=x[i+1].second; chmin(dist[ind1],b-a); chmin(dist[ind2],b-a); } } map<ll,vpl> mp2=mp; for(auto [key,x] : mp2){ for(auto [a,ind] : x){ ll b=key+1; ll c=lower_bound(mp[b].begin(),mp[b].end(),make_pair(a,0LL))-mp[b].begin(); if (c<mp[b].size()){ chmin(dist[ind],1+mp[b][c].first-a); chmin(dist[mp[b][c].second],1+mp[b][c].first-a); } b=key-1; c=lower_bound(mp[b].begin(),mp[b].end(),make_pair(a,0LL))-mp[b].begin(); if (c<mp[b].size()){ chmin(dist[ind],1+mp[b][c].first-a); chmin(dist[mp[b][c].second],1+mp[b][c].first-a); } } } rep(i,N){ cout<<dist[i]<<'\n'; } }