結果
問題 | No.2743 Twisted Lattice |
ユーザー | GOTKAKO |
提出日時 | 2024-04-20 12:18:22 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 716 ms / 3,000 ms |
コード長 | 1,891 bytes |
コンパイル時間 | 2,883 ms |
コンパイル使用メモリ | 234,608 KB |
実行使用メモリ | 43,904 KB |
最終ジャッジ日時 | 2024-10-12 07:37:31 |
合計ジャッジ時間 | 9,171 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 565 ms
43,840 KB |
testcase_01 | AC | 218 ms
23,616 KB |
testcase_02 | AC | 238 ms
23,484 KB |
testcase_03 | AC | 566 ms
43,776 KB |
testcase_04 | AC | 707 ms
43,904 KB |
testcase_05 | AC | 716 ms
43,868 KB |
testcase_06 | AC | 684 ms
43,824 KB |
testcase_07 | AC | 697 ms
43,904 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); long long H,W,N; cin >> H >> W >> N; map<long long,vector<long long>> X; vector<tuple<long long,long long,long long>> XY(N); long long idx = 0; for(auto &[x,y,pos] : XY) cin >> x >> y,swap(x,y),X[x].push_back(y),pos = idx++; for(auto &[k,v] : X) sort(v.begin(),v.end()); long long inf = 4e18; vector<long long> answer(N,inf); for(long long i=0; i<N; i++){ auto[x,y,ig] = XY.at(i); auto &look = X[x]; long long pos = upper_bound(look.begin(),look.end(),y)-look.begin(); if(pos != look.size()) answer.at(i) = look.at(pos)-y; pos--; pos--; if(pos >= 0) answer.at(i) = min(answer.at(i),y-look.at(pos)); auto itr = X.find(x-1); if(itr != X.end() && X[x-1].size()) answer.at(i) = min(answer.at(i),max(y,X[x-1].at(0))); itr = X.find(x+1); if(itr != X.end() && X[x+1].size()) answer.at(i) = min(answer.at(i),max(y,X[x+1].at(0))); } sort(XY.rbegin(),XY.rend()); set<pair<long long,long long>> man; for(auto [x,y,pos] : XY){ if(man.size() == 0){man.insert({x+y,pos}); continue;} auto[mind,pos2] = *man.begin(); long long now = mind-1-x + y-1; answer.at(pos) = min(answer.at(pos),now); answer.at(pos2) = min(answer.at(pos2),now); man.insert({x+y,pos}); } reverse(XY.begin(),XY.end()); man.clear(); for(auto [x,y,pos] : XY){ if(man.size() == 0){man.insert({y-x,pos}); continue;} auto[mind,pos2] = *man.begin(); long long now = x+mind-1 + y-1; answer.at(pos) = min(answer.at(pos),now); answer.at(pos2) = min(answer.at(pos2),now); man.insert({y-x,pos}); } for(auto ans : answer) cout << ans << "\n"; }