結果
問題 | No.2743 Twisted Lattice |
ユーザー | cho435 |
提出日時 | 2024-04-20 02:42:20 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 506 ms / 3,000 ms |
コード長 | 1,345 bytes |
コンパイル時間 | 2,508 ms |
コンパイル使用メモリ | 224,268 KB |
実行使用メモリ | 35,420 KB |
最終ジャッジ日時 | 2024-10-11 21:35:31 |
合計ジャッジ時間 | 7,624 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 459 ms
35,420 KB |
testcase_01 | AC | 161 ms
9,744 KB |
testcase_02 | AC | 160 ms
11,276 KB |
testcase_03 | AC | 441 ms
34,564 KB |
testcase_04 | AC | 496 ms
34,496 KB |
testcase_05 | AC | 506 ms
34,428 KB |
testcase_06 | AC | 503 ms
34,632 KB |
testcase_07 | AC | 492 ms
34,444 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i,n) for(int i=0;i<(int)(n);i++) int main(){ int h,w,n; cin>>h>>w>>n; vector<int> a(n),b(n); rep(i,n) cin>>a.at(i)>>b.at(i); vector<ll> ans(n,1e18); map<int,vector<pair<ll,ll>>> mp; rep(i,n) mp[b.at(i)].push_back({a.at(i),i}); for(auto&[k,v]:mp){ sort(v.begin(),v.end()); int m=v.size(); rep(i,m){ if(i>0) ans.at(v.at(i).second)=min(ans.at(v.at(i).second),v.at(i).first-v.at(i-1).first); if(i+1<m) ans.at(v.at(i).second)=min(ans.at(v.at(i).second),v.at(i+1).first-v.at(i).first); } } for(auto&[k,v]:mp){ for(int shf:{-1,1}){ if(mp.count(k-shf)){ auto[mn,j]=mp.at(k-shf).front(); for(auto[p,i]:v){ ll tmp=0; tmp+=min(mn,p); tmp+=abs(mn-p); ans.at(i)=min(ans.at(i),tmp); } } } } vector<pair<int,ll>> vp; for(auto&[k,v]:mp){ vp.push_back({k,v.front().first}); } int m=vp.size(); vector<ll> rmn(m,1e18),lmn(m,1e18); rep(i,m-1){ lmn.at(i+1)=min(lmn.at(i),vp.at(i).second)+vp.at(i+1).first-vp.at(i).first; } for(int i=m-1;i>0;i--){ rmn.at(i-1)=min(rmn.at(i),vp.at(i).second)+vp.at(i).first-vp.at(i-1).first; } rep(i,m){ auto &v=mp.at(vp.at(i).first); ll tmp=min(lmn.at(i),rmn.at(i)); for(auto[p,j]:v){ ans.at(j)=min(ans.at(j),tmp+p-2); } } rep(i,n) cout<<ans.at(i)<<"\n"; }