본문 바로가기

백준

1034 램프

고민고민하다가 다른 사람 풀이 참고했다. 

결국 같은 패턴이 몇 개인지 세고, 같은 패턴의 개수가 많은 걸 선택하면 됐었다. 

해당 패턴이 불을 다 켤 수 있는지 확인해주고..

 

 

 

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <functional>
#include <string>
#include <queue>
#include <deque>
#include <stack>
#include <set>
#include <map>
#include <cmath>
#include <cstring>
#include <bitset>
#include <stdio.h>
#include <math.h>
#include <sstream>

#define xx first
#define yy second
#define all(x) (x).begin(), (x).end()
#define MAX 987654321

using namespace std;
using i64 = long long int;
using ii = pair<int, int>;
using iis = pair<int, string>;
using ii64 = pair<i64, i64>;
using iii = tuple<int, int, int>;

int main() {
    int n, m, k;
    scanf("%d %d", &n, &m);
    
    vector<string> v(n);
    for (int i = 0; i < n; i++)
        cin >> v[i];
    scanf("%d", &k);
    
    int ans = 0;
    for (int i = 0; i < n; i++) {
        // 행의 불을 켤 수 있는지 검사
        int cntZero = 0;
        for (int j = 0; j < m; j++) {
            if (v[i][j] == '0')
                cntZero++;
        }
        if (cntZero > k || cntZero % 2 != k % 2)
            continue;
        
        // 해당 패턴이 몇 번 나오는지 검사
        int cntPattern = 0;
        for (int j = 0; j < n; j++) {
            if (v[i] == v[j])
                cntPattern++;
        }
        
        ans = max(cntPattern, ans);
    }
    printf("%d\n", ans);
    
    return 0;
}

 

 

'백준' 카테고리의 다른 글

19952 인성 문제 있어??  (0) 2022.05.14
1013 Contact  (0) 2022.05.08
18917 수열과 쿼리 38  (0) 2022.04.30
15565 귀여운 라이언  (0) 2022.04.30
2410 2의 멱수의 합  (0) 2022.04.25