結果
問題 | No.1346 Rectangle |
ユーザー | k |
提出日時 | 2021-02-03 18:50:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,177 bytes |
コンパイル時間 | 2,176 ms |
コンパイル使用メモリ | 200,712 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-02 03:02:48 |
合計ジャッジ時間 | 2,893 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,n) for(int i=0; i<(int)(n); i++) int black(int x, int y) { return __builtin_popcountll(x & y); } int white(int x, int y, int n) { x = ~x; y = ~y; int mask = (1<<n) - 1; return __builtin_popcountll(x & y & mask); } bool go(vector<int> &masks, int pos, int n) { if (pos == masks.size()) { for (int i = 0; i < masks.size(); i++) { for (int j = 0; j < i; j++) { if (black(masks[i], masks[j]) >= 2 || white(masks[i], masks[j], n) >= 2) return false; } } return true; } for (int i = 0; i < 1<<n; i++) { masks[pos] = i; if (go(masks, pos+1, n)) return true; } return false; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); long long n; cin >> n; /* // 実験コード for (int i = 1; i < 8; i++) { cout << i << " "; vector<int> masks(i); if (go(masks, 0, n)) cout << "ok" << endl; else cout << "ng" << endl; } */ if (n <= 2) cout << "INF" << endl; else if (n <= 4) cout << 6 << endl; else if (n <= 6) cout << 4 << endl; else cout << 2 << endl; return 0; }