結果

問題 No.640 76本のトロンボーン
ユーザー PachicobuePachicobue
提出日時 2018-01-27 04:01:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 5,119 bytes
コンパイル時間 2,482 ms
コンパイル使用メモリ 211,120 KB
実行使用メモリ 7,752 KB
最終ジャッジ日時 2023-08-27 21:41:24
合計ジャッジ時間 6,136 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

#define VARNAME(x) #x
#define show(x) cerr << #x << " = " << x << endl

using namespace std;
using ll = long long;
using ld = long double;
template <typename T>
vector<T> Vec(int n, T v)
{
    return vector<T>(n, v);
}
template <class... Args>
auto Vec(int n, Args... args)
{
    auto val = Vec(args...);
    return vector<decltype(val)>(n, move(val));
}

template <typename T>
ostream& operator<<(ostream& os, const vector<T>& v)
{
    os << "sz:" << v.size() << "\n[";
    for (const auto& p : v) {
        os << p << ",";
    }
    os << "]\n";
    return os;
}

template <typename S, typename T>
ostream& operator<<(ostream& os, const pair<S, T>& p)
{
    os << "(" << p.first << "," << p.second
       << ")";
    return os;
}


constexpr ll MOD = (ll)1e9 + 7LL;
constexpr ld PI = static_cast<ld>(3.1415926535898);

template <typename T>
constexpr T INF = numeric_limits<T>::max() / 10;

struct Graph {
    Graph(const int n)
    {
        edge.resize(n);
    }
    void addEdge(const int from, const int to)
    {
        edge[from].push_back(to);
        edge[to].push_back(from);
    }
    vector<vector<int>> edge;
};

int N;
int ans;
void MaximumIndependentSet(const Graph& g, const vector<bool>& used, const int use, const int res)
{
    if (ans == N + 1) {
        return;
    }
    if (use + res <= ans) {
        return;
    }
    ans = max(ans, use);
    for (int i = 0; i < 4 * N; i++) {
        if (not used[i]) {
            vector<bool> tmp = used;
            tmp[i] = true;
            int tmpres = res - 1;
            for (const int to : g.edge[i]) {
                if (not used[to]) {
                    tmpres--;
                    tmp[to] = true;
                }
            }
            MaximumIndependentSet(g, tmp, use + 1, tmpres);
        }
    }
}

int main()
{
    cin.tie(0);
    ios::sync_with_stdio(false);
    cin >> N;
    vector<bool> ok(4 * N, true);
    vector<vector<bool>> room(N, vector<bool>(N));
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < N; j++) {
            char c;
            cin >> c;
            room[i][j] = c == '.';
        }
    }
    Graph g(4 * N);
    int res = 4 * N;
    vector<bool> usedv(4 * N, false);
    for (int i = 0; i < 4 * N; i++) {
        const bool tate1 = i < 2 * N;
        const int offset1 = (i % (2 * N)) / N;
        const int pos1 = (i % (2 * N)) % N;
        for (int k = 0; k < N - 1; k++) {
            if (tate1) {
                if (not room[offset1 + k][pos1]) {
                    res--;
                    usedv[i] = true;
                    break;
                }
            } else {
                if (not room[pos1][offset1 + k]) {
                    res--;
                    usedv[i] = true;
                    break;
                }
            }
        }
    }
    for (int i = 0; i < N; i++) {
        if (usedv[i]) {
            continue;
        }
        g.addEdge(i, i + N);
        if (i == 0) {
            for (int j = 2 * N; j < 3 * N; j++) {
                if (usedv[j]) {
                    continue;
                }

                const int y = (j - 2 * N) % N;
                if (y < N - 1) {
                    g.addEdge(i, j);
                }
            }
        } else if (i < N - 1) {
            for (int j = 2 * N; j < 4 * N; j++) {
                if (usedv[j]) {
                    continue;
                }

                const int y = (j - 2 * N) % N;
                if (y < N - 1) {
                    g.addEdge(i, j);
                }
            }
        } else {
            for (int j = 3 * N; j < 4 * N; j++) {
                if (usedv[j]) {
                    continue;
                }
                const int y = (j - 2 * N) % N;
                if (y < N - 1) {
                    g.addEdge(i, j);
                }
            }
        }
    }
    for (int i = N; i < 2 * N; i++) {
        if (usedv[i]) {
            continue;
        }
        if (i == 2 * N) {
            for (int j = 2 * N; j < 3 * N; j++) {
                if (usedv[j]) {
                    continue;
                }
                const int y = (j - 2 * N) % N;
                if (y > 0) {
                    g.addEdge(i, j);
                }
            }
        } else if (i < 2 * N - 1) {
            for (int j = 2 * N; j < 4 * N; j++) {
                if (usedv[j]) {
                    continue;
                }
                const int y = (j - 2 * N) % N;
                if (y > 0) {
                    g.addEdge(i, j);
                }
            }
        } else {
            for (int j = 3 * N; j < 4 * N; j++) {
                if (usedv[j]) {
                    continue;
                }
                const int y = (j - 2 * N) % N;
                if (y > 0) {
                    g.addEdge(i, j);
                }
            }
        }
    }
    for (int i = 2 * N; i < 3 * N; i++) {
        if (usedv[i] or usedv[i + N]) {
            continue;
        }
        g.addEdge(i, i + N);
    }

    MaximumIndependentSet(g, usedv, 0, res);
    cout << ans << endl;

    return 0;
}
0