結果
問題 | No.707 書道 |
ユーザー | ei1333333 |
提出日時 | 2018-06-29 22:28:37 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 869 bytes |
コンパイル時間 | 1,986 ms |
コンパイル使用メモリ | 204,096 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-30 23:57:12 |
合計ジャッジ時間 | 2,642 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 3 ms
6,944 KB |
testcase_07 | RE | - |
testcase_08 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using int64 = long long; int main() { int H, W; string P[50]; cin >> H >> W; for(int i = 0; i < H; i++) { string s; cin >> s; string ret = "o"; ret += s; ret += "o"; P[i + 1] = ret; } P[0] = P[H + 1] = "x"; for(int i = 0; i < W; i++) { P[0] += "o"; P[H + 1] += "o"; } P[0] += "x"; P[H + 1] += "x"; double ret = 1e9; for(int i = 0; i < H + 2; i++) { for(int j = 0; j < W + 2; j++) { if(P[i][j] == 'o') { double cost = 0; for(int k = 0; k < H + 2; k++) { for(int l = 0; l < W + 2; l++) { if(P[k][l] == '1') { cost += sqrt((i - k) * (i - k) + (j - l) * (j - l)); } } } ret = min(ret, cost); } } } cout << fixed << setprecision(10) << ret << endl; }