結果
問題 | No.1183 コイン遊び |
ユーザー | aspi |
提出日時 | 2020-08-01 01:55:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 145 ms / 2,000 ms |
コード長 | 3,260 bytes |
コンパイル時間 | 982 ms |
コンパイル使用メモリ | 98,632 KB |
実行使用メモリ | 6,520 KB |
最終ジャッジ日時 | 2024-07-07 00:38:21 |
合計ジャッジ時間 | 7,160 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 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 | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 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 | 89 ms
5,648 KB |
testcase_13 | AC | 78 ms
5,516 KB |
testcase_14 | AC | 132 ms
6,260 KB |
testcase_15 | AC | 139 ms
6,380 KB |
testcase_16 | AC | 137 ms
6,388 KB |
testcase_17 | AC | 133 ms
6,388 KB |
testcase_18 | AC | 138 ms
6,384 KB |
testcase_19 | AC | 145 ms
6,516 KB |
testcase_20 | AC | 140 ms
6,388 KB |
testcase_21 | AC | 134 ms
6,392 KB |
testcase_22 | AC | 137 ms
6,388 KB |
testcase_23 | AC | 138 ms
6,392 KB |
testcase_24 | AC | 134 ms
6,388 KB |
testcase_25 | AC | 142 ms
6,392 KB |
testcase_26 | AC | 142 ms
6,388 KB |
testcase_27 | AC | 138 ms
6,384 KB |
testcase_28 | AC | 138 ms
6,392 KB |
testcase_29 | AC | 130 ms
6,520 KB |
testcase_30 | AC | 131 ms
6,388 KB |
testcase_31 | AC | 139 ms
6,392 KB |
testcase_32 | AC | 137 ms
6,392 KB |
testcase_33 | AC | 137 ms
6,512 KB |
testcase_34 | AC | 142 ms
6,384 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <utility> #include <tuple> #include <cstdint> #include <cstdio> #include <map> #include <queue> #include <set> #include <stack> #include <deque> #include <unordered_map> #include <unordered_set> #include <bitset> #include <cctype> #include <math.h> #include <cmath> #include <ctime> #include <stdlib.h> using namespace std; #define int long long //#define endl "\n" #define all(v) v.begin(),v.end() #define fir first #define sec second #define m_p make_pair #define m_t make_tuple #define rep(i,n) for(int i=0; i<(int) (n); i++) const double pai = 3.1415926535897; const int mod = 1000000007; const int INF = 1000000021; const int MAX = 510000; const int MOD = 1000000007; long long fac[MAX], finv[MAX], inv[MAX]; //x未満の要素数を返す二分探索関数 int b_s(vector<int>& vec, int xx) { return lower_bound(all(vec), xx) - vec.begin(); } template<typename T>void vecout(vector<T>& vec) { for (T t : vec) cout << t << " "; cout << endl; } template<typename TT>void vecin(vector<TT>& vec) { for (int i = 0; i < vec.size(); i++) { cin >> vec[i]; } } template<class tt> struct counter { map<tt, int>mp; bool add(tt t, int xx) { if (!mp.count(t)) { mp[t] = xx; return true; } mp[t] += xx; if (!mp[t]) { mp.erase(t); } return false; } }; // テーブルを作る前処理 void COMinit() { fac[0] = fac[1] = 1; finv[0] = finv[1] = 1; inv[1] = 1; for (int i = 2; i < MAX; i++) { fac[i] = fac[i - 1] * i % MOD; inv[i] = MOD - inv[MOD % i] * (MOD / i) % MOD; finv[i] = finv[i - 1] * inv[i] % MOD; } } //n個を1個以上のx組のグループに分ける重複組み合わせはcom(n-1,x-1) //グループが0個でもいいときはnにxを足す // 二項係数計算 long long COM(int n, int k) { if (n < k) return 0; if (n < 0 || k < 0) return 0; return fac[n] * (finv[k] * finv[n - k] % MOD) % MOD; } long long modinv(long long a, long long m) { long long b = m, u = 1, v = 0; while (b) { long long t = a / b; a -= t * b; swap(a, b); u -= t * v; swap(u, v); } u %= m; if (u < 0) u += m; return u; } long long modpow(int a, int n) { int res = 1; while (n > 0) { if (n & 1) res = res * a % mod; a = a * a % mod; n >>= 1; } return res; } bool chmax(int& xx, int yy) { if (xx < yy) { xx = yy; return true; } return false; } bool chmin(int& xx, int yy) { if (xx > yy) { xx = yy; return true; } return false; } int gcd(int xx, int yy) { int p = xx; int q = yy; if (q > p)swap(p, q); while (p % q != 0) { p %= q; swap(p, q); } return q; } int lcm(int xx, int yy) { return xx * yy / gcd(xx, yy); } bool prime(int xx) { if (xx <= 1) { return 0; } for (int i = 2; i * i <= xx; i++) { if (xx % i == 0) { return 0; } } return 1; } signed main() { int n, ans = 0; cin >> n; vector<int8_t>vec1(n), vec2(n), vec3 = { 0 }; for (int i = 0; i < n; i++) cin >> vec1[i]; for (int i = 0; i < n; i++) cin >> vec2[i]; for (int i = 0; i < n; i++) { if (vec1[i] != vec2[i]) { vec3.push_back(1); } else { vec3.push_back(0); } } vec3.push_back(0); for (int i = 0; i <= n; i++) { if (vec3[i] != vec3[i + 1]) { ans++; } } cout << ans / 2 << endl; }