結果

問題 No.2321 Continuous Flip
ユーザー lgswdnlgswdn
提出日時 2023-06-03 14:39:25
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,813 bytes
コンパイル時間 2,401 ms
コンパイル使用メモリ 209,448 KB
実行使用メモリ 63,492 KB
最終ジャッジ日時 2024-12-29 02:54:20
合計ジャッジ時間 26,600 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
15,344 KB
testcase_01 AC 3 ms
8,324 KB
testcase_02 AC 3 ms
8,432 KB
testcase_03 AC 3 ms
8,516 KB
testcase_04 AC 573 ms
23,608 KB
testcase_05 AC 669 ms
27,100 KB
testcase_06 AC 664 ms
26,976 KB
testcase_07 AC 1,069 ms
27,460 KB
testcase_08 AC 643 ms
24,784 KB
testcase_09 AC 1,030 ms
27,356 KB
testcase_10 AC 1,481 ms
32,516 KB
testcase_11 AC 966 ms
28,244 KB
testcase_12 AC 939 ms
27,240 KB
testcase_13 AC 668 ms
24,772 KB
testcase_14 AC 940 ms
26,708 KB
testcase_15 AC 653 ms
23,632 KB
testcase_16 AC 618 ms
24,796 KB
testcase_17 AC 654 ms
27,228 KB
testcase_18 AC 754 ms
27,584 KB
testcase_19 AC 557 ms
24,796 KB
testcase_20 AC 707 ms
27,992 KB
testcase_21 AC 803 ms
28,524 KB
testcase_22 AC 702 ms
23,736 KB
testcase_23 AC 911 ms
31,712 KB
testcase_24 TLE -
testcase_25 AC 4 ms
8,396 KB
testcase_26 AC 48 ms
19,140 KB
testcase_27 AC 50 ms
20,512 KB
testcase_28 AC 141 ms
26,932 KB
testcase_29 AC 138 ms
26,936 KB
testcase_30 AC 147 ms
26,936 KB
testcase_31 AC 153 ms
26,936 KB
testcase_32 AC 155 ms
26,936 KB
testcase_33 AC 147 ms
63,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define fi first
#define se second
#define eb emplace_back
#define mp make_pair
using namespace std;
typedef long double ld;
typedef long long ll;
typedef unsigned long long ull;
typedef __int128 i128;
template<typename T,typename U>
T ceil(T x, U y) {return (x>0?(x+y-1)/y:x/y);}
template<typename T,typename U>
T floor(T x, U y) {return (x>0?x/y:(x-y+1)/y);}
template<class T,class S>
bool chmax(T &a,const S b) {return (a<b?a=b,1:0);}
template<class T,class S>
bool chmin(T &a,const S b) {return (a>b?a=b,1:0);}
int popcnt(int x) {return __builtin_popcount(x);}
int popcnt(ll x) {return __builtin_popcountll(x);}
int topbit(int x) {return (x==0?-1:31-__builtin_clz(x));}
int topbit(ll x) {return (x==0?-1:63-__builtin_clzll(x));}
int lowbit(int x) {return (x==0?-1:__builtin_ctz(x));}
int lowbit(ll x) {return (x==0?-1:__builtin_ctzll(x));}

#define rep(i,a,b) for(int i=(a);i<=(b);i++)
#define per(i,a,b) for(int i=(a);i>=(b);i--)
#define ac 1
#define wa 0
typedef pair<int,int> pii;
typedef vector<int> vi;
typedef vector<pii> vp;
int read() {
  int x=0,w=1; char c=getchar(); 
  while(!isdigit(c)) {if(c=='-') w=-1; c=getchar();}
  while(isdigit(c)) {x=x*10+(c-'0'); c=getchar();}
  return x*w;
}

#define int long long
const int N=2e5+9,inf=2e18;
int n,m,d[N],ans,c;
vp e[N];

void dijkstra() {
  d[1]=0; rep(i,2,n+1) d[i]=inf;
  priority_queue<pii>q; q.push(pii(0,1));
  while(!q.empty()) {
    int u=q.top().se; q.pop();
    for(auto [v,w]:e[u]) if(d[v]>d[u]+w)
      d[v]=d[u]+w, q.push(pii(-d[v],v));
  }
}

signed main() {
  n=read(), m=read(), c=read();
  rep(i,1,n) {
    int a=read(); ans+=a;
    e[i].eb(i+1,a), e[i+1].eb(i,a);
  }
  rep(i,1,m) {
    int l=read(), r=read();
    e[l].eb(r+1,c), e[r+1].eb(l,c);
  }
  dijkstra();
  printf("%lld\n",ans-d[n+1]);
  return 0;
}
0