結果
問題 | No.707 書道 |
ユーザー | kametaro |
提出日時 | 2018-07-02 19:26:33 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,756 bytes |
コンパイル時間 | 606 ms |
コンパイル使用メモリ | 65,136 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-01 01:35:30 |
合計ジャッジ時間 | 1,344 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
6,940 KB |
ソースコード
#include <iostream> #include <cstdio> #include <climits> #include <algorithm> #include <math.h> using namespace std; int main(){ int h,w; cin>>h>>w; // scanf("%d",&h); // scanf("%d",&w); char paper[52][52]={}; // string asas; // getline(&asas); getchar(); // getchar(); // getchar(); for(int i=1;i<=h;i++){ for(int j=1;j<=w;j++){ //cin>>paper[j][i]; paper[j][i]=getchar(); // scanf("%c",paper[j][i]); // printf("-%c-",paper[j][i]); } getchar(); } double tem,ans=9999999.9; for(int k=1;k<=w;k++){ tem=0; for(int i=1;i<=h;i++){ for(int j=1;j<=w;j++){ if(paper[j][i]!='0'){ tem+=sqrt((k-j)*(k-j)+(i-0)*(i-0)); } } } ans=min(ans,tem); } for(int k=1;k<=w;k++){ tem=0; for(int i=1;i<=h;i++){ for(int j=1;j<=w;j++){ if(paper[j][i]!='0'){ tem+=sqrt((k-j)*(k-j)+(i-(h+1))*(i-(h+1))); } } } ans=min(ans,tem); } for(int k=0;k<=w;k++){ tem=0; for(int i=1;i<=h;i++){ for(int j=1;j<=w;j++){ if(paper[j][i]!='0'){ tem+=sqrt((0-j)*(0-j)+(i-k)*(i-k)); } } } ans=min(ans,tem); } for(int k=0;k<=w;k++){ tem=0; for(int i=1;i<=h;i++){ for(int j=1;j<=w;j++){ if(paper[j][i]!='0'){ tem+=sqrt(((w+1)-j)*((w+1)-j)+(i-k)*(i-k)); } } } ans=min(ans,tem); } cout<<ans<<endl;; return 0; }