結果
問題 | No.640 76本のトロンボーン |
ユーザー | paruki |
提出日時 | 2018-01-27 00:06:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 3,683 bytes |
コンパイル時間 | 1,796 ms |
コンパイル使用メモリ | 176,464 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 17:21:31 |
合計ジャッジ時間 | 2,466 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
ソースコード
#define _USE_MATH_DEFINES #include "bits/stdc++.h" using namespace std; #define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i)) #define rep(i,j) FOR(i,0,j) #define each(x,y) for(auto &(x):(y)) #define mp make_pair #define MT make_tuple #define all(x) (x).begin(),(x).end() #define debug(x) cout<<#x<<": "<<(x)<<endl #define smax(x,y) (x)=max((x),(y)) #define smin(x,y) (x)=min((x),(y)) #define MEM(x,y) memset((x),(y),sizeof (x)) #define sz(x) (int)(x).size() #define RT return #define vv(a,b,c,d) vector<vector<a> >(b,vector<a>(c,d)) #define vvv(a,b,c,d,e) vector<vector<vector<a> > >(b,vv(a,c,d,e)) using ll = long long; using pii = pair<int, int>; using vi = vector<int>; using vll = vector<ll>; int N, ans; bool a[75][75], b[75][75], c[75][75]; vector<pii> yk, tt; int counts() { memcpy(b, a, sizeof(a)); int res = 0; each(p, tt) { bool ok = true; rep(i, N - 1) { if (b[p.first+i][p.second]) { ok = false; break; } } if (ok) { rep(i, N - 1) { b[p.first + i][p.second] = true; } res++; } } RT res; } int put(int i, int j, int di, int dj) { int ni = i + di*(N - 1); int nj = j + dj*(N - 1); if (ni > N || nj > N)RT 0; rep(k, N - 1) { int ii = i + di*k; int jj = j + dj*k; if (a[ii][jj])RT 0; } rep(k, N - 1) { int ii = i + di*k; int jj = j + dj*k; a[ii][jj] = true; } RT 1; } int main() { ios::sync_with_stdio(false); cin.tie(0); cout << fixed << setprecision(20); cin >> N; vector<string> S(N); rep(i, N) { cin >> S[i]; rep(j, N)if (S[i][j] == '#')c[i][j] = true; } rep(ITER, 2) { // すべて左に置く { memcpy(a, c, sizeof a); int val = 0; rep(i, N) { // i行目に置く val += put(i, 0, 0, 1); } // 縦はおけるだけ置く rep(i, 2)rep(j, N)val += put(i, j, 1, 0); smax(ans, val); } // すべて右に置く { memcpy(a, c, sizeof a); int val = 0; rep(i, N) { // i行目に置く val += put(i, 1, 0, 1); } // 縦はおけるだけ置く rep(i, 2)rep(j, N)val += put(i, j, 1, 0); smax(ans, val); } vector<pii> sp{ {0, 0}, { 0,1 }, { N - 1,0 }, { N - 1,1 }}; // 上または下だけに置く rep(S, 1 >> 4) { memcpy(a, c, sizeof a); int val = 0; rep(i,4)if(S>>i&1)val += put(sp[i].first, sp[i].second, 0, 1); // 縦はおけるだけ置く rep(i, 2)rep(j, N)val += put(i, j, 1, 0); smax(ans, val); } // 貪欲に置く { memcpy(a, c, sizeof a); int val = 0; // 横におけるだけ rep(i, N)rep(j, N) { val += put(i, j, 0, 1); } rep(i, N)rep(j, N) { val += put(i, j, 1, 0); } smax(ans, val); } // 輪 { memcpy(a, c, sizeof a); int val = 0; val += put(0, 0, 0, 1); val += put(0, N - 1, 1, 0); val += put(N - 1, 1, 0, 1); val += put(1, 0, 1, 0); smax(ans, val); } // 縦、横交換 rep(i, N)rep(j, N)a[i][j] = c[j][i]; memcpy(c, a, sizeof a); } cout << ans << endl; }