結果
問題 | No.707 書道 |
ユーザー | ahe100 |
提出日時 | 2018-07-15 18:10:32 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 996 bytes |
コンパイル時間 | 684 ms |
コンパイル使用メモリ | 74,820 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-06 21:45:02 |
合計ジャッジ時間 | 1,288 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,248 KB |
ソースコード
#include<cstdio> #include<cstring> #include<vector> #include<queue> #include<stack> #include<algorithm> #include<cmath> #include<climits> #include<string> #include<set> #include<numeric> #include<map> #include<iostream> using namespace std; #define rep(i,n) for(int i = 0;i<((int)(n));i++) #define reg(i,a,b) for(int i = ((int)(a));i<=((int)(b));i++) #define irep(i,n) for(int i = ((int)(n)-1);i>=0;i--) #define ireg(i,a,b) for(int i = ((int)(b));i>=((int)(a));i--) typedef long long ll; typedef pair<ll, ll> mp; ll mod = 1e9+7; ll inf = 1e18; //AC ll h,w; string p[100]; double ans=999999; double dist(ll x,ll y){ double d=0; reg(i,1,h){ reg(j,1,w){ if(p[i][j-1]=='1'){ d+=sqrt(pow(x-j,2)+pow(y-i,2)); // cout<<d<<endl; } } } return d; } int main(void){ cin>>h>>w; reg(i,1,h){ cin>>p[i]; } reg(i,1,w)ans=min(ans,dist(i,0)); reg(i,1,w)ans=min(ans,dist(i,h+1)); reg(i,1,h)ans=min(ans,dist(0,i)); reg(i,1,h)ans=min(ans,dist(w+1,i)); cout<<ans<<endl; return 0; }