結果

問題 No.2155 みちらcolor
ユーザー ikepyonikepyon
提出日時 2022-12-29 11:25:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 3,079 bytes
コンパイル時間 1,765 ms
コンパイル使用メモリ 172,316 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 13:18:56
合計ジャッジ時間 3,356 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 1 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 1 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 1 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 1 ms
5,376 KB
testcase_55 AC 2 ms
5,376 KB
testcase_56 AC 2 ms
5,376 KB
testcase_57 AC 1 ms
5,376 KB
testcase_58 AC 2 ms
5,376 KB
testcase_59 AC 2 ms
5,376 KB
testcase_60 AC 2 ms
5,376 KB
testcase_61 AC 2 ms
5,376 KB
testcase_62 AC 1 ms
5,376 KB
testcase_63 AC 1 ms
5,376 KB
testcase_64 AC 2 ms
5,376 KB
testcase_65 AC 1 ms
5,376 KB
testcase_66 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <exception>
#include <fstream>
#include <functional>
#include <iomanip>
#include <ios>
#include <iosfwd>
#include <iostream>
#include <istream>
#include <iterator>
#include <limits>
#include <list>
#include <locale>
#include <map>
#include <memory>
#include <new>
#include <numeric>
#include <ostream>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <stdexcept>
#include <streambuf>
#include <string>
#include <typeinfo>
#include <utility>
#include <valarray>
#include <vector>
#include <array>
#include <atomic>
#include <chrono>
#include <condition_variable>
#include <forward_list>
#include <future>
#include <initializer_list>
#include <mutex>
#include <random>
#include <ratio>
#include <regex>
#include <scoped_allocator>
#include <system_error>
#include <thread>
#include <tuple>
#include <typeindex>
#include <type_traits>
#include <unordered_map>
#include <unordered_set>
#define whole(v) (v).begin(),(v).end()
#define rwhole(v) (v).rbegin(),(v).rend()
#define press(v) (v).erase(unique(whole(v)),(v).end())
#define Yes cout<<"Yes"<<endl; return 0
#define No cout<<"No"<<endl; return 0
#define vint vector<int>
#define vll vector<ll>
#define vpint vector<pair<int,int>>
#define vvint vector<vector<int>>
#define vvll vector<vector<ll>>
#define pqint priority_queue<int>
#define pqpint priority_queue<pair<int,int>>
#define rpqint priority_queue<int,vector<int>,greater<int>>
#define rpqpint priority_queue<pair<int,int>,vector<pair<int,int>>,greater<pair<int,int>>>
using namespace std;
using ll = long long;
int mod107 = 1000000007, mod998 = 998244353;
string alphabet = "abcdefghijklmnopqrstuvwxyz", ALPHABET = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";

//(a,b)と(c,d)の距離
double pyth(ll a, ll b, ll c, ll d) {
    double l = sqrt((a - c) * (a - c) + (b - d) * (b - d));
    return l;
}

//aのb乗をmで割った余り(a,bは非負整数,mは自然数)
int power(ll a, ll b, int m) {
    int k = 0, ans = 1;
    vector<ll> v(100);
    v[0] = a;
    for (int i = 1; i < 100; i++)
        v[i] = v[i - 1] * v[i - 1] % m;
    while (b > 0) {
        if (b % 2)
            ans = ans * v[k] % m;
        k++; b /= 2;
    }
    return ans;
}

//素数判定 O(sqrt(n))
bool prime_judge(ll n) {
    for (int i = 2; i <= sqrt(n); i++) {
        if (n % i == 0) {
            return false;
        }
    }
    return true;
}

int main() {
    int n, m, l;
    cin >> n >> m >> l;
    vint a(n);
    
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }

    vector<vector<bool>> dp(n + 1, vector<bool>(1001));
    dp[0][l] = true;

    for (int i = 0; i < n; i++) {

        for (int j = 1; j < 1001; j++) {

            if (dp[i][j]) {
                dp[i + 1][(a[i] + j) / 2] = true;
                dp[i + 1][j] = true;
            }
        }
    }

    if (dp[n][m]) {
        Yes;
    }

    else {
        No;
    }
}
0