結果
問題 | No.707 書道 |
ユーザー | ngtkana |
提出日時 | 2020-03-15 13:35:27 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 730 bytes |
コンパイル時間 | 2,087 ms |
コンパイル使用メモリ | 204,132 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-03 19:04:00 |
合計ジャッジ時間 | 2,604 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 4 ms
5,376 KB |
testcase_07 | AC | 4 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using lint=long long; int main(){ std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false); std::vector<std::pair<double,double>>a; lint h,w;std::cin>>h>>w; for(lint i=1;i<=h;i++){ for(lint j=1;j<=w;j++){ char c;std::cin>>c; if(c=='1')a.emplace_back(i,j); } } double ans=std::numeric_limits<double>::infinity(); for(lint i=0;i<=h+1;i++){ for(lint j=0;j<=w+1;j++){ if((1<=i&&i<=h)==(1<=j&&j<=w))continue; double now=0; for(auto[x,y]:a){ now+=std::hypot(x-i,y-j); } if(now<ans)ans=now; } } std::cout<<std::setprecision(12)<<ans<<'\n'; }