結果
問題 | No.561 東京と京都 |
ユーザー | ppp |
提出日時 | 2017-08-26 00:11:55 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 5,420 bytes |
コンパイル時間 | 619 ms |
コンパイル使用メモリ | 89,448 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 16:52:19 |
合計ジャッジ時間 | 1,487 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 1 ms
5,248 KB |
testcase_15 | AC | 1 ms
5,248 KB |
testcase_16 | AC | 1 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 1 ms
5,248 KB |
testcase_19 | AC | 1 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
ソースコード
#include <fstream> #include <iostream> #include <algorithm> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <string> #include <sstream> #include <map> #include <set> #include <vector> #include <cmath> #include <queue> #include <random> using namespace std; #define INT_MAX_VALUE 2147483647 #define LONG_LONG_MAX_VALUE 9223372036854775807 // //template <class T> //T mmax(T a,T b){ // if(a>=b){ // return a; // } // return b; //} //template <class T> //T mmin(T a,T b){ // if(a<=b){ // return a; // } // return b; //} // //long long gcd(long long a, long long b){ // if(a<b){ // swap(a,b); // } // while(b){ // long long r = a%b; // a=b; // b=r; // } // return a; //} // //long long lcm(long long a, long long b){ // return (a*b)/gcd(a,b); //} // //long long isPrim(long long a){ // if(a==1){ // return a; // } // for(int i=2;i*i<=a;i++){ // if(a%i==0){ // return i; // } // } // return a; //} // //long long mod_pow(long long x, long long n, long long mod){ // //xのn乗を計算するのにn乗を2進表記にして計算 // //x^22 = x^16 + x^4 + x^2 // long long ret=1; // while(n>0){ // if(n&1){ // ret=(ret*x)%mod;//答えに付加 // } // x=(x*x)%mod;//2乗 // n >>=1; // } // return ret; //} // // //struct XX{ // int x; // int i; //}; // // //class xxGreater { //public: // bool operator()(const XX& riLeft, const XX& riRight) const { // //第2条件 // if((riLeft.x) == (riRight.x)){ // return riLeft.i < riRight.i;//<:昇順(小さいものから順番)、>:降順(大きいものから順番) // //プライオリティキューの場合は > で、top()すると値の小さいものがとれる // } // //第1条件 // return (riLeft.x) > (riRight.x); // } //}; //union-find //int ppar[100001]; //int rrank[100001]; // //void init(int n){ // for(int i=0;i<n;i++){ // ppar[i]=i; // rrank[i]=0; // } //} // //int find(int x){ // if(ppar[x]==x){ // return x; // }else{ // return ppar[x]=find(ppar[x]); // } //} // //void unite(int x,int y){ // x=find(x); // y=find(y); // if(x==y){ // return; // } // if(rrank[x]<rrank[y]){ // ppar[x]=y; // }else{ // ppar[y]=x; // if(rrank[x]==rrank[y]){ // rrank[x]++; // } // } //} //bool same(int x,int y){ // return find(x)==find(y); //} // ////kruskal //struct edge{ // int u; // int v; // int cost; //}; // //bool comp(edge& e1,edge& e2){ // return e1.cost < e2.cost; //} // //edge es[200000]; // //long long kruskal(int V,int E){//V:頂点数,E:辺数 // sort(es,es+E,comp); // init(V); // long long res = 0; // for(int i=0;i<E;i++){ // edge e = es[i]; // if(!same(e.u,e.v)){ // unite(e.u,e.v); // res+=e.cost; // } // } // return res; //} //map<long long,long long> prime_f(long long n){ // map<long long,long long>res; // for(int i=2;i*i<=n;i++){ // while(n%i==0){ // ++res[i]; // n/=i; // } // } // if(n!=1)res[n]=1; // return res; //} struct edge{ int from,to,cost; }; int V,E;//ここは問題固有 edge es[402];//ここは問題固有 int d[402]; void shortestPath(int s){ for(int i=0;i<V;i++){ d[i]=INT_MAX_VALUE; } d[s]=0; while(true){ bool update=false; for(int i=0;i<E;i++){ edge e=es[i]; if(d[e.from]!=INT_MAX_VALUE && d[e.to]>d[e.from]+e.cost){ d[e.to]=d[e.from]+e.cost; update=true; } } if(!update){ break; } } } int main(int argc, const char * argv[]) { //std::ios::sync_with_stdio(false); //scanf("%s",S); //scanf("%d",&N); //sscanf(tmp.c_str(),"%dd%d%d",&time[i], &dice[i], &z[i]); //getline(cin, target); //cin >> x >> y; //テスト用 //ifstream ifs( "1_06.txt" ); //ifs >> a; //ここから //入力高速化 ios::sync_with_stdio(false); cin.tie(0); int N,D; cin >> N >> D; V=2*N+1; E=2*V+2; int T[100],K[100]; for(int i=1;i<=N;i++){ cin >> T[i] >> K[i]; } for(int i=1;i<N;i++){ // es[4*i].from=2*i-1; es[4*i].to=2*(i+1)-1; es[4*i].cost=-T[i+1]; es[4*i+1].from=2*i-1; es[4*i+1].to=2*(i+1); es[4*i+1].cost=-K[i+1]+D; // es[4*i+2].from=2*i; es[4*i+2].to=2*(i+1); es[4*i+2].cost=-K[i+1]; es[4*i+3].from=2*i; es[4*i+3].to=2*(i+1)-1; es[4*i+3].cost=-T[i+1]+D; } //最後にスタートをつなぐ es[4*N].from=0; es[4*N].to=1; es[4*N].cost=-T[1]; es[4*N+1].from=0; es[4*N+1].to=2; es[4*N+1].cost=-K[1]+D; shortestPath(0); if(d[2*N-1]<d[2*N]){ cout << -1*d[2*N-1] << endl; }else{ cout << -1*d[2*N] << endl; } //cout << ans << endl; //ここまで //cout << "ans" << endl;改行含む //printf("%.0f\n",ans);//小数点以下表示なし //printf("%.7f\n",p); //printf("%f\n",pow(2,ans.size())); return 0; }