結果
| 問題 | No.3710 Universal Tiles |
| コンテスト | |
| ユーザー |
👑 kmjp
|
| 提出日時 | 2026-09-11 22:27:37 |
| 言語 | C++17 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 65 ms / 2,000 ms |
| + 940µs | |
| コード長 | 1,535 bytes |
| 記録 | |
| コンパイル時間 | 1,335 ms |
| コンパイル使用メモリ | 221,984 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-09-11 22:27:47 |
| 合計ジャッジ時間 | 3,785 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 32 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------
int N,M;
vector<string> S[8][8];
vector<string> rotate(vector<string> S) {
vector<string> T;
int H=S.size(),W=S[0].size(),x,y;
FOR(x,W) T.push_back(string(H,' '));
FOR(y,H) FOR(x,W) T[W-1-x][y]=S[y][x]; //left
//FOR(y,H) FOR(x,W) T[x][y]=S[H-1-y][x]; //right
return T;
}
int A[10][10];
void solve() {
int i,j,k,l,r,x,y; string s;
cin>>N>>M;
FOR(i,N) {
vector<string> A;
FOR(y,M) {
cin>>s;
A.push_back(s);
}
FOR(j,4) {
S[i][j]=A;
A=rotate(A);
}
}
int mi=101010;
int mask;
FOR(mask,1<<(2*N)) {
ZERO(A);
FOR(i,N) {
vector<string> V=S[i][(mask>>(2*i))%4];
FOR(y,M) FOR(x,M) A[y][x]|=V[y][x]=='#';
}
int sum=0;
FOR(y,M) FOR(x,M) sum+=A[y][x];
mi=min(mi,sum);
}
cout<<mi<<endl;
}
int main(int argc,char** argv){
string s;int i;
if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
cout.tie(0); solve(); return 0;
}
kmjp