結果
問題 | No.707 書道 |
ユーザー | 0w1 |
提出日時 | 2018-10-21 00:09:36 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 994 bytes |
コンパイル時間 | 2,612 ms |
コンパイル使用メモリ | 203,684 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-19 03:04:05 |
合計ジャッジ時間 | 3,255 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; signed main() { ios::sync_with_stdio(false); int H, W; cin >> H >> W; vector<string> P(H); for (int i = 0; i < H; ++i) cin >> P[i]; auto sqr = [](double x) { return x * x; }; double ans = 1e9; for (int i = 0; i < H; ++i) { double cost0 = 0, cost1 = 0; for (int r = 0; r < H; ++r) for (int c = 0; c < W; ++c) if (P[r][c] == '1') { cost0 += sqrt(sqr(i - r) + sqr(-1 - c)); cost1 += sqrt(sqr(i - r) + sqr(W + 1 - c)); } ans = min(ans, cost0); ans = min(ans, cost1); } for (int i = 0; i < W; ++i) { double cost0 = 0, cost1 = 0; for (int r = 0; r < H; ++r) for (int c = 0; c < W; ++c) if (P[r][c] == '1') { cost0 += sqrt(sqr(-1 - r) + sqr(i - c)); cost1 += sqrt(sqr(H + 1 - r) + sqr(i - c)); } ans = min(ans, cost0); ans = min(ans, cost1); } cout << fixed << setprecision(9) << ans << endl; return 0; }