मान लीजिए कि हमारे पास n x m आकार का एक मैट्रिक्स है। प्रत्येक सेल में 0 से 9 तक एक मान होगा। एक ध्वज धारीदार होना चाहिए:ध्वज की प्रत्येक क्षैतिज पंक्ति में एक ही रंग के वर्ग होने चाहिए, और आसन्न क्षैतिज पंक्तियों के रंग अलग-अलग होने चाहिए। हमें यह जांचना होगा कि दिया गया मैट्रिक्स वैध ध्वज है या नहीं।
तो, अगर इनपुट पसंद है
0 | 0 | 0 |
1 | 1 | 1 |
3 | 3 | 3 |
कदम
इसे हल करने के लिए, हम इन चरणों का पालन करेंगे -
n := row count of matrix m := column count of matrix l := 'm' res := 1 for initialize i := 0, when i < n, update (increase i by 1), do: f := matrix[i, 0] for initialize j := 0, when j < m, update (increase j by 1), do: if matrix[i, j] is not equal to f, then: res := 0 if l is same as f, then: res := 0 l := f return (if res is non-zero, then true, otherwise false)
उदाहरण
आइए बेहतर समझ पाने के लिए निम्नलिखित कार्यान्वयन देखें -
#include <bits/stdc++.h> using namespace std; bool solve(vector<vector<int>> matrix){ int n = matrix.size(); int m = matrix[0].size(); char l = 'm'; bool res = 1; for (int i = 0; i < n; i++){ char f = matrix[i][0]; for (int j = 0; j < m; j++){ if (matrix[i][j] != f) res = 0; } if (l == f) res = 0; l = f; } return res ? true : false; } int main(){ vector<vector<int>> matrix = { { 0, 0, 0 }, { 1, 1, 1 }, { 3, 3, 3 } }; cout << solve(matrix) << endl; }
इनपुट
{ { 0, 0, 0 }, { 1, 1, 1 }, { 3, 3, 3 } }
आउटपुट
1