結果

問題 No.2871 Universal Serial Bus
ユーザー tnakao0123tnakao0123
提出日時 2024-09-07 14:19:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 1,209 bytes
コンパイル時間 958 ms
コンパイル使用メモリ 58,300 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-07 14:19:30
合計ジャッジ時間 1,894 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2871.cc:  No.2871 Universal Serial Bus - yukicoder
 */

#include<cstdio>
#include<cmath>
#include<algorithm>

using namespace std;

/* constant */

const int MAX_H = 20;
const int MAX_W = 20;
const int CNT = 100;

/* typedef */

/* global variables */

char ss[MAX_H][MAX_W + 4], ts[MAX_H][MAX_W + 4];

/* subroutines */

bool check(int h, int w, bool rev) {
  for (int i = 0; i < h; i++)
    for (int j = 0; j < w; j++) {
      int ti = rev ? h - 1 - i : i;
      int tj = rev ? w - 1 - j : j;
      if (ss[i][j] == ts[ti][tj]) return false;
    }
  return true;
}

double calc(double p1, double p2) {
  double sum = 0.0, r = 1.0;
  for (int i = 1; i <= CNT; i++) {
    double pi = (i & 1) ? p1 : p2;
    double dr = r * (1.0 - pow(pi, -(i - 1)));
    sum += i * dr;
    r -= dr;
  }
  return sum;
}

/* main */

int main() {
  int h, w;
  scanf("%d%d", &h, &w);
  for (int i = 0; i < h; i++) scanf("%s", ss[i]);
  for (int i = 0; i < h; i++) scanf("%s", ts[i]);

  bool f0 = check(h, w, false), f1 = check(h, w, true);
  //printf("%d %d\n", f0, f1);

  double sum = calc(f0 ? 2 : 1, f1 ? 2 : 1);

  if (sum <= 0.0) puts("-1");
  else printf("%.12lf\n", sum);
  
  return 0;
}
0