結果

問題 No.1183 コイン遊び
ユーザー piddypiddy
提出日時 2020-09-04 15:55:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 915 bytes
コンパイル時間 2,297 ms
コンパイル使用メモリ 204,520 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-05-04 11:41:15
合計ジャッジ時間 8,480 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 5 ms
5,376 KB
testcase_11 AC 11 ms
5,376 KB
testcase_12 AC 90 ms
12,928 KB
testcase_13 AC 81 ms
11,904 KB
testcase_14 AC 137 ms
17,920 KB
testcase_15 AC 143 ms
18,816 KB
testcase_16 AC 144 ms
18,816 KB
testcase_17 AC 144 ms
18,944 KB
testcase_18 AC 146 ms
19,072 KB
testcase_19 AC 144 ms
18,816 KB
testcase_20 AC 146 ms
18,816 KB
testcase_21 AC 120 ms
18,944 KB
testcase_22 AC 119 ms
18,944 KB
testcase_23 AC 122 ms
18,944 KB
testcase_24 AC 119 ms
18,944 KB
testcase_25 AC 143 ms
18,944 KB
testcase_26 AC 145 ms
18,944 KB
testcase_27 AC 144 ms
18,816 KB
testcase_28 AC 145 ms
18,944 KB
testcase_29 AC 119 ms
18,944 KB
testcase_30 AC 119 ms
18,816 KB
testcase_31 AC 143 ms
18,816 KB
testcase_32 AC 145 ms
18,944 KB
testcase_33 AC 144 ms
18,944 KB
testcase_34 AC 144 ms
18,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define ALL(x) (x).begin(), (x).end()
#define RALL(x) (x).rbegin(), (x).rend()
#define FSP(x) fixed << setprecision(x)
using namespace std;
using ll = long long;
constexpr ll INF = LLONG_MAX;
//constexpr ll P = 1e9 + 7;
//constexpr ll P = 998244353;
constexpr long double PI = acosl(-1);
void Yes() {cout << "Yes\n";}
void No() {cout << "No\n";}
void YES() {cout << "YES\n";}
void NO() {cout << "NO\n";}

int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);

	ll n;
	cin >> n;
	vector<ll> a(n), b(n);
	for (ll i = 0; i < n; i++) cin >> a[i];
	for (ll i = 0; i < n; i++) cin >> b[i];

	vector<bool> diff(n);
	for (ll i = 0; i < n; i++) diff[i] = (a[i] != b[i]);
	ll cnt = 0;
	for (ll i = 0; i < n; i++) {
		if (diff[i]) {
			if (cnt == 0) cnt++;
			else if (!diff[i - 1]) cnt++;
			else if (diff[i - 1] && (a[i - 1] ^ b[i - 1]) ^ (a[i] ^ b[i])) cnt++;
		}
	}
	cout << cnt << endl;
}
0