Submission #4597614
Source Code Expand
// {{{ by shik
#include <bits/stdc++.h>
#pragma GCC diagnostic ignored "-Wunused-result"
#pragma GCC diagnostic ignored "-Wunused-function"
#define SZ(x) ((int)(x).size())
#define ALL(x) begin(x), end(x)
#define REP(i, n) for (int i = 0; i < int(n); i++)
#define REP1(i, a, b) for (int i = (a); i <= int(b); i++)
#define MP make_pair
#define PB push_back
using namespace std;
typedef int64_t LL;
typedef pair<int, int> PII;
typedef vector<int> VI;
namespace { namespace shik {
template<class T> void _R(T &x) { cin >> x; }
void _R(int &x) { scanf("%d", &x); }
void _R(int64_t &x) { scanf("%" SCNd64, &x); }
void _R(double &x) { scanf("%lf", &x); }
void _R(char &x) { scanf(" %c", &x); }
void _R(char *x) { scanf("%s", x); }
void R() {}
template<class T, class... U> void R(T &head, U &... tail) { _R(head); R(tail...); }
template<class T> void _W(const T &x) { cout << x; }
void _W(const int &x) { printf("%d", x); }
void _W(const int64_t &x) { printf("%" PRId64, x); }
void _W(const double &x) { printf("%.16f", x); }
void _W(const char &x) { putchar(x); }
void _W(const char *x) { printf("%s", x); }
template<class T> void _W(const vector<T> &x) { for (auto i = x.begin(); i != x.end(); _W(*i++)) if (i != x.cbegin()) putchar(' '); }
void W() {}
template<class T, class... U> void W(const T &head, const U &... tail) { _W(head); putchar(sizeof...(tail) ? ' ' : '\n'); W(tail...); }
#ifdef SHIK
#include "dump.hpp"
#else
#define dump(...)
#endif
template<class T, class F = less<T>> void sort_uniq(vector<T> &v, F f = F()) { sort(begin(v), end(v), f); v.resize(unique(begin(v), end(v)) - begin(v)); }
template<class T> inline T bit(T x, int i) { return (x >> i) & 1; }
template<class T> inline bool chkmax(T &a, const T &b) { return b > a ? a = b, true : false; }
template<class T> inline bool chkmin(T &a, const T &b) { return b < a ? a = b, true : false; }
template<class T> using MaxHeap = priority_queue<T>;
template<class T> using MinHeap = priority_queue<T, vector<T>, greater<T>>;
// }}}
// {{{ ModInt
template<int _MOD>
struct ModInt {
static const auto MOD = _MOD;
template<class T> using integral_only = typename enable_if<is_integral<T>::value>::type;
int x;
constexpr ModInt() : x() {}
template<class T, integral_only<T>* = nullptr>
ModInt(T _x) {
x = _x % MOD;
if (x < 0) x += MOD;
}
ModInt operator-() const { return {x == 0 ? 0 : MOD-x}; }
ModInt& operator+=(ModInt rhs) {
x += rhs.x;
if (x >= MOD) x -= MOD;
return *this;
}
ModInt& operator-=(ModInt rhs) {
x -= rhs.x;
if (x < 0) x += MOD;
return *this;
}
ModInt& operator*=(ModInt rhs) {
x = (long long)x * rhs.x % MOD;
return *this;
}
ModInt& operator/=(ModInt rhs) {
return *this *= rhs.inv();
}
ModInt operator+(ModInt rhs) const { return ModInt(*this) += rhs; }
ModInt operator-(ModInt rhs) const { return ModInt(*this) -= rhs; }
ModInt operator*(ModInt rhs) const { return ModInt(*this) *= rhs; }
ModInt operator/(ModInt rhs) const { return ModInt(*this) /= rhs; }
ModInt inv() const {
// should work for non-prime MOD if gcd(x, MOD) = 1
int a = x, b = MOD, u = 1, v = 0;
while (b != 0) {
int t = a / b;
a -= t * b;
u -= t * v;
swap(a, b);
swap(u, v);
}
return u;
}
template<class T, integral_only<T>* = nullptr>
ModInt pow(T e) {
ModInt r = 1, p = *this;
while (e) {
if (e & 1) r *= p;
p *= p;
e >>= 1;
}
return r;
}
bool operator==(ModInt rhs) const { return x == rhs.x; }
bool operator!=(ModInt rhs) const { return x != rhs.x; }
bool operator<(ModInt rhs) const { return x < rhs.x; }
bool operator<=(ModInt rhs) const { return x <= rhs.x; }
bool operator>(ModInt rhs) const { return x > rhs.x; }
bool operator>=(ModInt rhs) const { return x >= rhs.x; }
friend string to_string(ModInt i) { return to_string(i.x); }
friend ostream& operator<<(ostream &os, ModInt i) { return os << i.x; }
};
// }}}
using mint=ModInt<1000000007>;
const int N=2e5+10;
int n,c[N];
mint dp[N];
void main() {
R(n);
REP1(i,1,n) R(c[i]);
VI v;
REP1(i,1,n) if ( c[i]!=c[i-1] ) v.PB(c[i]);
n=SZ(v);
REP1(i,1,n) c[i]=v[i-1];
dp[0]=1;
REP1(i,1,n) {
int x=c[i];
dp[0]=dp[x]=dp[0]+dp[x];
dump(i,vector<mint>(dp,dp+n+1));
}
W(dp[0]);
}
// {{{ main
}}
int main() { shik::main(); return 0; }
// }}}
Submission Info
| Submission Time |
|
| Task |
B - Reversi |
| User |
shik |
| Language |
C++14 (GCC 5.4.1) |
| Score |
700 |
| Code Size |
4747 Byte |
| Status |
AC |
| Exec Time |
23 ms |
| Memory |
2676 KiB |
Judge Result
| Set Name |
Sample |
All |
| Score / Max Score |
0 / 0 |
700 / 700 |
| Status |
|
|
| Set Name |
Test Cases |
| Sample |
s1.txt, s2.txt, s3.txt |
| All |
01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, 21.txt, 22.txt, 23.txt, 24.txt, 25.txt, 26.txt, 27.txt, 28.txt, 29.txt, 30.txt, s1.txt, s2.txt, s3.txt |
| Case Name |
Status |
Exec Time |
Memory |
| 01.txt |
AC |
23 ms |
2676 KiB |
| 02.txt |
AC |
23 ms |
2676 KiB |
| 03.txt |
AC |
23 ms |
2676 KiB |
| 04.txt |
AC |
23 ms |
2676 KiB |
| 05.txt |
AC |
19 ms |
2168 KiB |
| 06.txt |
AC |
19 ms |
2168 KiB |
| 07.txt |
AC |
19 ms |
2168 KiB |
| 08.txt |
AC |
19 ms |
2168 KiB |
| 09.txt |
AC |
17 ms |
2168 KiB |
| 10.txt |
AC |
17 ms |
2168 KiB |
| 11.txt |
AC |
17 ms |
1660 KiB |
| 12.txt |
AC |
17 ms |
1660 KiB |
| 13.txt |
AC |
23 ms |
2676 KiB |
| 14.txt |
AC |
23 ms |
2676 KiB |
| 15.txt |
AC |
21 ms |
2292 KiB |
| 16.txt |
AC |
21 ms |
2292 KiB |
| 17.txt |
AC |
21 ms |
2292 KiB |
| 18.txt |
AC |
21 ms |
2292 KiB |
| 19.txt |
AC |
21 ms |
2168 KiB |
| 20.txt |
AC |
21 ms |
2168 KiB |
| 21.txt |
AC |
21 ms |
2292 KiB |
| 22.txt |
AC |
21 ms |
2292 KiB |
| 23.txt |
AC |
16 ms |
1024 KiB |
| 24.txt |
AC |
21 ms |
2292 KiB |
| 25.txt |
AC |
1 ms |
256 KiB |
| 26.txt |
AC |
1 ms |
256 KiB |
| 27.txt |
AC |
1 ms |
256 KiB |
| 28.txt |
AC |
1 ms |
256 KiB |
| 29.txt |
AC |
1 ms |
256 KiB |
| 30.txt |
AC |
1 ms |
256 KiB |
| s1.txt |
AC |
1 ms |
256 KiB |
| s2.txt |
AC |
1 ms |
256 KiB |
| s3.txt |
AC |
1 ms |
256 KiB |