結果
問題 | No.999 てん vs. ほむ |
ユーザー | idat_50me |
提出日時 | 2020-03-25 13:22:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 81 ms / 2,000 ms |
コード長 | 2,405 bytes |
コンパイル時間 | 1,451 ms |
コンパイル使用メモリ | 173,228 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-10 09:57:45 |
合計ジャッジ時間 | 3,246 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 5 ms
6,948 KB |
testcase_09 | AC | 76 ms
6,940 KB |
testcase_10 | AC | 23 ms
6,940 KB |
testcase_11 | AC | 16 ms
6,944 KB |
testcase_12 | AC | 36 ms
6,944 KB |
testcase_13 | AC | 81 ms
6,940 KB |
testcase_14 | AC | 80 ms
6,940 KB |
testcase_15 | AC | 77 ms
6,944 KB |
testcase_16 | AC | 78 ms
6,944 KB |
testcase_17 | AC | 51 ms
6,940 KB |
testcase_18 | AC | 51 ms
6,940 KB |
testcase_19 | AC | 52 ms
6,940 KB |
testcase_20 | AC | 52 ms
6,940 KB |
testcase_21 | AC | 73 ms
6,940 KB |
testcase_22 | AC | 70 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function 'll GreaterBinarySearch(ll*, ll, ll, ll)': main.cpp:94:24: warning: converting to non-pointer type 'll' {aka 'long long int'} from NULL [-Wconversion-null] 94 | return NULL; | ^~~~
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; using intpair=pair<int,int>; using llpair=pair<ll,ll>; using llvec=vector<ll>; using llmat=vector<vector<ll>>; #define llmattp(name,a,b,num) name(a,vector<ll>(b,num)) #define INTINF 1<<30 #define LLINF 1LL<<60 #define ABS(x) ( (x)>0 ? (x) : -(x) ) template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } ll gcd(ll a, ll b) { if(a==0||b==0) return 0; if(a<b) swap(a,b); ll tmp = a%b; while(tmp!=0) { a = b; b = tmp; tmp = a%b; } return b; } ll factorial(ll x) { ll f=1; for(ll i=2; i<x; i++) { f*=i; } return f; } ll nPr(ll n, ll r) { ll result=1; for(ll i=r+1; i<=n; i++) result*=i; return result; } ll nCr(ll n, ll r) { if (n == r) { return 1; } if (r > n) { return 0; } if (r > n / 2) { r = n - r; } if (n == 0) { return 0; } if (r == 0) { return 1; } if (r == 1) { return n; } double result = 1; for (double i = 1; i <= r; i++) { result *= (n - i + 1) / i; } return (ll)result; } bool IsPrime(ll num) { if (num < 2) return false; else if (num == 2) return true; else if (num % 2 == 0) return false; // 偶数はあらかじめ除く double sqrtNum = sqrt(num); for (ll i = 3; i <= sqrtNum; i += 2) { if (num % i == 0) { // 素数ではない return false; } } // 素数である return true; } ll GreaterBinarySearch(ll *array, ll key, ll max, ll min) { if(array[max]<array[min]) { return NULL; } else { ll mid = max + (min-max)/2; if(array[mid]<key) { return GreaterBinarySearch(array,key,max,mid-1); } if(array[mid]>key) { return GreaterBinarySearch(array,key,mid+1,min); } else { return mid; } } } void PrimeFact(ll x) { // 素因数分解 出力部を適切に書き換え int i=2; while(x%2&&i*i<=x) { cout<<2<<endl; x/=2; } i++; while(i*i<=x) { if(x%i) { i+=2; continue; } cout<<i<<endl; x/=i; } } bool Palind(string s) { return s == string(s.rbegin(), s.rend()); } int main() { int N; cin>>N; int A[N]; ll result=0LL; for(int i=0; i<N; i++) { int a1,a2; cin>>a1>>a2; A[i]=a2-a1; result+=A[i]; } ll plus[N+1]; plus[0]=0LL; for(int i=0; i<N; i++) { plus[i+1]=plus[i]-A[i]*2LL; } sort(plus,plus+N+1); cout<<result+plus[N]<<endl; }