結果
問題 | No.2090 否定論理積と充足可能性 |
ユーザー | 259_Momone |
提出日時 | 2022-09-30 21:43:17 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 672 bytes |
コンパイル時間 | 2,508 ms |
コンパイル使用メモリ | 259,704 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-02 05:19:12 |
合計ジャッジ時間 | 5,810 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
コンパイルメッセージ
main.cpp: In lambda function: main.cpp:10:32: warning: control reaches end of non-void function [-Wreturn-type] 10 | V[i] = *max_element(begin(V), begin(V) + i) + 1; | ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <bits/extc++.h> int main() { using namespace std; vector<unsigned long> A(6), V(6); for(unsigned long i{}; i < 6; ++i){ cin >> A[i]; [&]{ for(unsigned long j{}; j < i; ++j)if(A[j] == A[i])return V[i] = V[j]; V[i] = *max_element(begin(V), begin(V) + i) + 1; }(); } for(auto&& a : V)--a; for(unsigned long i{}; i < 64; ++i){ transform(begin(V), end(V), begin(A), [&i](auto x){return 1UL & (i >> x);}); if((!(A[0] && A[1]) && A[2]) || (!(A[3] && A[4]) && A[5])){ cout << "YES" << endl; return 0; } } cout << "NO" << endl; return 0; }