結果
問題 | No.707 書道 |
ユーザー | 👑 CleyL |
提出日時 | 2022-11-07 13:51:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 1,027 bytes |
コンパイル時間 | 976 ms |
コンパイル使用メモリ | 101,496 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 21:50:35 |
合計ジャッジ時間 | 1,626 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 3 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <cmath> #include <algorithm> #include <iomanip> #include <vector> using namespace std; int main(){ int h,w;cin>>h>>w; vector<vector<char>> A(h,vector<char>(w)); for(int i = 0; h > i; i++){ for(int j = 0; w > j; j++){ cin>>A[i][j]; } } long double ans = 1e9; for(int i = 0; h > i; i++){ // -1,w+1 long double tmp = 0,tmp2 = 0; for(int j = 0; h > j; j++){ for(int k = 0; w > k; k++){ if(A[j][k] == '1'){ tmp += sqrt((k+1)*(k+1)+(j-i)*(j-i)); tmp2 += sqrt((w-k)*(w-k)+(j-i)*(j-i)); } } } ans = min(ans,min(tmp,tmp2)); } for(int i = 0; w > i; i++){ // -1,w+1 long double tmp = 0,tmp2 = 0; for(int j = 0; h > j; j++){ for(int k = 0; w > k; k++){ if(A[j][k] == '1'){ tmp += sqrt((j+1)*(j+1)+(k-i)*(k-i)); tmp2 += sqrt((h-j)*(h-j)+(k-i)*(k-i)); } } } ans = min(ans,min(tmp,tmp2)); } cout << fixed << setprecision(10) << ans << endl; }