結果
問題 | No.74 貯金箱の退屈 |
ユーザー | assy1028 |
提出日時 | 2016-07-04 23:31:03 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,531 bytes |
コンパイル時間 | 829 ms |
コンパイル使用メモリ | 104,936 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-12 20:13:42 |
合計ジャッジ時間 | 1,794 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,824 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 1 ms
6,820 KB |
testcase_16 | AC | 1 ms
6,816 KB |
testcase_17 | AC | 2 ms
6,820 KB |
testcase_18 | AC | 1 ms
6,816 KB |
testcase_19 | AC | 2 ms
6,816 KB |
testcase_20 | AC | 2 ms
6,816 KB |
testcase_21 | AC | 2 ms
6,820 KB |
testcase_22 | AC | 1 ms
6,820 KB |
testcase_23 | AC | 2 ms
6,816 KB |
testcase_24 | AC | 2 ms
6,816 KB |
testcase_25 | AC | 2 ms
6,816 KB |
testcase_26 | RE | - |
testcase_27 | AC | 2 ms
6,816 KB |
testcase_28 | AC | 2 ms
6,816 KB |
testcase_29 | AC | 2 ms
6,816 KB |
testcase_30 | AC | 2 ms
6,816 KB |
testcase_31 | AC | 1 ms
6,820 KB |
testcase_32 | AC | 2 ms
6,820 KB |
ソースコード
#include <algorithm> #include <iostream> #include <cstdio> #include <map> #include <numeric> #include <cmath> #include <set> #include <sstream> #include <string> #include <vector> #include <queue> #include <stack> #include <complex> #include <string.h> #include <unordered_set> #include <unordered_map> #include <bitset> #include <iomanip> #include <sys/time.h> #include <random> using namespace std; #define endl '\n' #define all(v) (v).begin(), (v).end() #define rall(v) (v).rbegin(), (v).rend() #define uniq(v) (v).erase(unique((v).begin(), (v).end()), (v).end()) typedef long long ll; typedef long double ld; typedef pair<int, int> P; typedef complex<double> comp; typedef vector< vector<ld> > matrix; struct pairhash { public: template<typename T, typename U> size_t operator()(const pair<T, U> &x) const { size_t seed = hash<T>()(x.first); return hash<U>()(x.second) + 0x9e3779b9 + (seed<<6) + (seed>>2); } }; const int inf = 1e9 + 9; const ll mod = 1e9 + 7; const double eps = 1e-8; const double pi = acos(-1); int N; int d[110]; bool w[110]; // rank on GF(2) const int max_n = 110; int matrix_rank(vector<bitset<max_n> > A, int n) { int m = A.size(); int i, idx = 0; for (i = 0; i < m && idx < n; i++, idx++) { if (!A[i][idx]) { bool f = false; int j, k; for (j = idx; j < n; j++) { for (k = i; k < m; k++) { if (A[k][j]) { f = true; break; } } if (f) break; } if (!f) return i; swap(A[i], A[k]); idx = j; } for (int j = i+1; j < m; j++) { if (A[j][idx]) A[j] ^= A[i]; } } return min(i, idx); } bool solve() { vector<bitset<max_n> > A(N), Ab(N); for (int i = 0; i < N; i++) { int a = (i + d[i]) % N; int b = (i - d[i] + N) % N; if (a == b) { A[a][i] = Ab[a][i] = true; } else { A[a][i] = Ab[a][i] = true; A[b][i] = Ab[b][i] = true; } Ab[i][N] = !w[i]; } return matrix_rank(A, N) == matrix_rank(Ab, N+1); } void input() { cin >> N; for (int i = 0; i < N; i++) cin >> d[i]; for (int i = 0; i < N; i++) cin >> w[i]; } int main() { ios::sync_with_stdio(false); cin.tie(0); cout << fixed << setprecision(15); input(); cout << (solve()?"Yes":"No") << endl; }