テストケースのhand_02.txtのみWAになってしまいます。他の人の提出コードと自分のコードを見比べてもどこが間違っているのかわからないです。どこが間違っているのか指摘していただきたいです。よろしくお願いします。
C++
1#include <bits/stdc++.h> 2 3std::vector<std::string> rotate90(const std::vector<std::string>& grid); 4bool is_same(const std::vector<std::string>& s, const std::vector<std::string>& t); 5std::pair<int,int> get_ref_point(const std::vector<std::string>& grid); 6 7int main() { 8 int n; std::cin >> n; 9 std::vector<std::string> s(n), t(n); 10 for (int i = 0; i < n; ++i) std::cin >> s[i]; 11 for (int i = 0; i < n; ++i) std::cin >> t[i]; 12 13 bool can_match = false; 14 for (int i = 0; i < 4; ++i) { 15 if (is_same(s, t)) 16 can_match = true; 17 s = rotate90(s); 18 } 19 20 if (can_match) std::cout << "Yes" << std::endl; 21 else std::cout << "No" << std::endl; 22 23 return 0; 24} 25 26std::vector<std::string> rotate90(const std::vector<std::string>& grid) { 27 /* gridを時計回りに90度回転したものを返す */ 28 int n = grid.size(); 29 std::vector<std::string> grid90(n, std::string(n, '.')); 30 for (int i = 0; i < n; ++i) 31 for (int j = 0; j < n; ++j) 32 grid90[i][j] = grid[n-1-j][i]; 33 return grid90; 34} 35 36 37bool is_same(const std::vector<std::string>& s, const std::vector<std::string>& t) { 38 int n = s.size(); 39 /* sを平行移動してtを一致させることが出来るか否か */ 40 std::pair<int,int> ref_s = get_ref_point(s); 41 std::pair<int,int> ref_t = get_ref_point(t); 42 43 // sをtに一致させる移動量を計算 44 int y_translate = ref_t.first - ref_s.first; 45 int x_translate = ref_t.second - ref_s.second; 46 47 for (int i = 0; i < n; ++i) { 48 for (int j = 0; j < n; ++j) { 49 int y = i + y_translate; 50 int x = j + x_translate; 51 if ((y >= 0 && y < n) && (x >= 0 && x < n)) { 52 if (s[i][j] != t[y][x]) 53 return false; 54 } 55 else { 56 if (s[i][j] == '#') 57 return false; 58 } 59 } 60 } 61 return true; 62} 63 64std::pair<int,int> get_ref_point(const std::vector<std::string>& grid) { 65 /* 左上の'#'のpair(row,col) の値を返す */ 66 int n = grid.size(); 67 for (int i = 0; i < n; ++i) 68 for (int j = 0; j < n; ++j) 69 if (grid[i][j] == '#') 70 return std::pair<int,int>(i,j); 71} 72
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/09/12 02:17