結果
問題 | No.2015 Stair Counter |
ユーザー | ramdos |
提出日時 | 2022-01-18 19:43:32 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 30 ms / 2,000 ms |
コード長 | 2,227 bytes |
コンパイル時間 | 4,637 ms |
コンパイル使用メモリ | 254,192 KB |
最終ジャッジ日時 | 2025-01-27 13:03:11 |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 25 |
ソースコード
#pragma region おまじないα ver1 .08 //#define _CRT_SECURE_NO_WARNINGS //#pragma warning(disable : 4996) // using mint = modint1000000007; // using mint = modint998244353; #pragma region 変化しないおまじない #include "bits/stdc++.h" #if __has_include("atcoder/all") #include <atcoder/all> using namespace atcoder; #endif #ifdef ONLINE_JUDGE #pragma GCC optimize("O3") #pragma GCC target( \ "sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2,tune=native") #endif using namespace std; typedef long long ll; #define all(x) (x).begin(), (x).end() // sortなどの引数を省略 #define max3(x, y, z) max(x, max(y, z)) // 3変数min #define min3(x, y, z) min(x, min(y, z)) // 3変数max #define chmin(m, v) m = min((m), (v)) //最小値を更新 #define chmax(m, v) m = max((m), (v)) //最大値を更新 #define rep(i, n) repi(i, 0, n) // 0-N rep #define reps(i, n) repi(i, 1, n + 1) // 1-N #define repi(i, a, b) for (ll i = ll(a); i < ll(b); i++) // a-b #define prif(x) \ if (x) { \ cout << "Yes"; \ } else { \ cout << "No"; \ } #define P pair<ll, ll> // typedefだと予測が効かないっぽい? #ifdef _MSC_FULL_VER //手元なら #define dout cout #else #define dout \ if (false) cout #endif double dist(double x1, double y1, double x2, double y2) { return sqrt((x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2)); } ll idist(ll x1, ll y1, ll x2, ll y2) { return (x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2); } ll digitsum(ll N) { while (N >= 10) { int tmp = 0; while (N > 0) { tmp += (N % 10); N /= 10; } N = tmp; } return N; } struct qwqw { qwqw() { cin.tie(0); cout.tie(0); ios::sync_with_stdio(0); cout << fixed << setprecision(20); }; } aaaaaaa; #pragma endregion #pragma endregion signed main(){ ll T; cin >> T; //T=1; rep(casei,T){ ll N,M; cin >> N >> M; vector<ll> v(N+1); vector<ll> a(N+1); vector<ll> b(N+1); v[0]=M; ll f=0; rep(i,N){ cin >> v[i+1]; } rep(i,N){ a[i]=v[i+1]-b[i]; b[i+1]=v[i]-a[i]; if(a[i]<0 or b[i+1]<0)f=1; } if(f==0)cout << "Yes" << endl; else cout << "No" << endl; } }