結果
問題 | No.1525 Meximum Sum |
ユーザー | MtSaka |
提出日時 | 2021-05-28 21:55:24 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,180 bytes |
コンパイル時間 | 3,013 ms |
コンパイル使用メモリ | 186,772 KB |
実行使用メモリ | 12,544 KB |
最終ジャッジ日時 | 2024-11-08 20:44:51 |
合計ジャッジ時間 | 6,670 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
//GIVE ME AC!!!!!!!!!!!!!!!!! #pragma GCC target("avx") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include<bits/stdc++.h> #define ll long long #define floatset() fixed<<setprecision(15) #define all(n) n.begin(),n.end() #define rall(n) n.rbegin(),n.rend() #define rep(i, s, n) for (ll i = s; i < (ll)(n); i++) using namespace std; const int dx[4] = {1, 0, -1, 0}; const int dy[4] = {0, 1, 0, -1}; const ll inf =1e18; const ll MOD=1000000007; const ll mod=998244353; const double pi=acos(-1); using P=pair<ll,ll>; void insert(set<pair<int,int>> &st, int v) { auto t = st.lower_bound({v-1,2}); if (t != st.end() && t->first == v-1) t = st.erase(t); else st.insert({v,1}); if (t != st.end() && t->first == v+1) st.erase(t); else st.insert({v,2}); } // mexを計算 int mex(set<pair<int,int>> &st) { auto t = st.lower_bound({0,-1}); if (t->first != 0) return 0; else { t++; return t->first + 1; } } int main(){ ll n; cin>>n; ll a[n]; rep(i,0,n){ cin>>a[i]; } ll ans=0; rep(i,0,n){ set<pair<int,int>>s; rep(j,i,n){ insert(s,a[j]); ans+=mex(s); } } cout<<ans<<endl; }