結果
問題 |
No.1225 I hate I hate Matrix Construction
|
ユーザー |
|
提出日時 | 2020-11-27 17:35:08 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 907 bytes |
コンパイル時間 | 582 ms |
コンパイル使用メモリ | 90,084 KB |
最終ジャッジ日時 | 2025-01-16 06:06:00 |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:22:19: error: variable ‘std::array<int, 3> cnt1’ has initializer but incomplete type 22 | array<int, 3> cnt1{}, cnt2{}; | ^~~~ main.cpp:22:27: error: variable ‘std::array<int, 3> cnt2’ has initializer but incomplete type 22 | array<int, 3> cnt1{}, cnt2{}; | ^~~~ main.cpp:25:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 25 | scanf("%d", &x); | ~~~~~^~~~~~~~~~ main.cpp:30:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 30 | scanf("%d", &x); | ~~~~~^~~~~~~~~~
ソースコード
#include <iostream> #include <algorithm> #include <map> #include <set> #include <queue> #include <stack> #include <numeric> #include <bitset> #include <cmath> static const int MOD = 1000000007; using ll = long long; using u32 = unsigned; using u64 = unsigned long long; using namespace std; template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208; int main() { int n; cin >> n; array<int, 3> cnt1{}, cnt2{}; for (int i = 0; i < n; ++i) { int x; scanf("%d", &x); cnt1[x]++; } for (int i = 0; i < n; ++i) { int x; scanf("%d", &x); cnt2[x]++; } int ans = (cnt1[2]+cnt2[2])*n - cnt1[2]*cnt2[2]; if(cnt1[2] && cnt2[2]) cout << ans << "\n"; else if(cnt1[2]) cout << ans+cnt1[1] << "\n"; else if(cnt2[2]) cout << ans+cnt2[1] << "\n"; else cout << ans+max(cnt1[1], cnt2[1]) << "\n"; return 0; }