Submission #156175


Source Code Expand

#include <algorithm>
#include <bitset>
#include <cctype>
#include <cfloat>
#include <climits>
#include <cmath>
#include <cstdio>
#include <fstream>
#include <functional>
#include <iomanip>
#include <iostream>
#include <list>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <vector>

using namespace std;

#define REP(i, n) for (int i = 0; i < (int)n; ++i)

const double EPS = 1e-8;
const int INF = 100000000;

int N, M;
int a,b,c;

bool dfs(int k, int A, int B, int C)
{
    int sum = A*2+B*3+C*4;

    if(sum > M)
        return false;

    if(k == N) {
        if(sum == M) {
            a = A; b = B; c = C;
            return true;
        }
        else
            return false;
    }
    
    if(sum == M) {
        a = A; b = B; c = C;
        return true;
    }

    if(dfs(k+1, A, B, C+1)) {
        return true;
    }

    if(dfs(k+1, A, B+1, C)) {
        return true;
    }

    if(dfs(k+1, A+1, B, C)) {
        return true;
    }

    return false;
}

int main()
{
    cin >> N >> M;
    if(dfs(0, 0, 0, 0))
        cout << a << ' ' << b << ' ' << c << endl;
    else
        cout << "-1 -1 -1" << endl; 
    return 0;
}

Submission Info

Submission Time
Task C - スフィンクスのなぞなぞ
User Castella
Language C++ (G++ 4.6.4)
Score 0
Code Size 1293 Byte
Status WA
Exec Time 2034 ms
Memory 8612 KB

Judge Result

Set Name smallA smallB all
Score / Max Score 0 / 10 0 / 20 0 / 70
Status
AC × 9
WA × 18
TLE × 11
AC × 15
WA × 32
TLE × 18
AC × 25
WA × 59
TLE × 34
Set Name Test Cases
smallA test_1-1_ABC.txt, test_1-500_ABC.txt, test_100-103_ABC.txt, test_100-199_ABC.txt, test_100-1_ABC.txt, test_100-200_ABC.txt, test_100-201_ABC.txt, test_100-229_ABC.txt, test_100-300_ABC.txt, test_100-301_ABC.txt, test_100-399_ABC.txt, test_100-400_ABC.txt, test_100-401_ABC.txt, test_100-431_ABC.txt, test_100-473_ABC.txt, test_100-500_ABC.txt, test_33-106_ABC.txt, test_33-131_ABC.txt, test_33-132_ABC.txt, test_33-133_ABC.txt, test_33-134_ABC.txt, test_33-146_ABC.txt, test_33-51_ABC.txt, test_33-65_ABC.txt, test_33-66_ABC.txt, test_33-67_ABC.txt, test_33-71_ABC.txt, test_92-183_ABC.txt, test_92-184_ABC.txt, test_92-185_ABC.txt, test_92-310_ABC.txt, test_92-34_ABC.txt, test_92-367_ABC.txt, test_92-368_ABC.txt, test_92-369_ABC.txt, test_92-391_ABC.txt, test_92-434_ABC.txt, test_92-459_ABC.txt
smallB test_1-1_ABC.txt, test_1-500_ABC.txt, test_1-7500_AB.txt, test_100-103_ABC.txt, test_100-199_ABC.txt, test_100-1_ABC.txt, test_100-200_ABC.txt, test_100-201_ABC.txt, test_100-229_ABC.txt, test_100-300_ABC.txt, test_100-301_ABC.txt, test_100-399_ABC.txt, test_100-400_ABC.txt, test_100-401_ABC.txt, test_100-431_ABC.txt, test_100-473_ABC.txt, test_100-500_ABC.txt, test_100-7500_AB.txt, test_1500-1_AB.txt, test_1500-2999_AB.txt, test_1500-3000_AB.txt, test_1500-3001_AB.txt, test_1500-4072_AB.txt, test_1500-477_AB.txt, test_1500-500_AB.txt, test_1500-5768_AB.txt, test_1500-5999_AB.txt, test_1500-6000_AB.txt, test_1500-6001_AB.txt, test_1500-6268_AB.txt, test_1500-7024_AB.txt, test_1500-7500_AB.txt, test_33-106_ABC.txt, test_33-131_ABC.txt, test_33-132_ABC.txt, test_33-133_ABC.txt, test_33-134_ABC.txt, test_33-146_ABC.txt, test_33-51_ABC.txt, test_33-65_ABC.txt, test_33-66_ABC.txt, test_33-67_ABC.txt, test_33-71_ABC.txt, test_578-114_AB.txt, test_578-1155_AB.txt, test_578-1156_AB.txt, test_578-1157_AB.txt, test_578-1984_AB.txt, test_578-2101_AB.txt, test_578-2230_AB.txt, test_578-2311_AB.txt, test_578-2312_AB.txt, test_578-2313_AB.txt, test_578-2728_AB.txt, test_92-183_ABC.txt, test_92-184_ABC.txt, test_92-185_ABC.txt, test_92-310_ABC.txt, test_92-34_ABC.txt, test_92-367_ABC.txt, test_92-368_ABC.txt, test_92-369_ABC.txt, test_92-391_ABC.txt, test_92-434_ABC.txt, test_92-459_ABC.txt
all test_1-1_ABC.txt, test_1-500000_A.txt, test_1-500_ABC.txt, test_1-7500_AB.txt, test_100-103_ABC.txt, test_100-199_ABC.txt, test_100-1_ABC.txt, test_100-200_ABC.txt, test_100-201_ABC.txt, test_100-229_ABC.txt, test_100-300_ABC.txt, test_100-301_ABC.txt, test_100-399_ABC.txt, test_100-400_ABC.txt, test_100-401_ABC.txt, test_100-431_ABC.txt, test_100-473_ABC.txt, test_100-500000_A.txt, test_100-500_ABC.txt, test_100-7500_AB.txt, test_100000-175737_A.txt, test_100000-199999_A.txt, test_100000-1_A.txt, test_100000-200000_A.txt, test_100000-200001_A.txt, test_100000-300000_A.txt, test_100000-300001_A.txt, test_100000-321428_A.txt, test_100000-383852_A.txt, test_100000-399999_A.txt, test_100000-400000_A.txt, test_100000-400001_A.txt, test_100000-461143_A.txt, test_100000-482033_A.txt, test_100000-500000_A.txt, test_100000-500_A.txt, test_100000-7500_A.txt, test_12376-24751_A.txt, test_12376-24752_A.txt, test_12376-24753_A.txt, test_12376-4187_A.txt, test_12376-46199_A.txt, test_12376-49503_A.txt, test_12376-49504_A.txt, test_12376-49505_A.txt, test_12376-53158_A.txt, test_12376-57785_A.txt, test_12376-60441_A.txt, test_1500-1_AB.txt, test_1500-2999_AB.txt, test_1500-3000_AB.txt, test_1500-3001_AB.txt, test_1500-4072_AB.txt, test_1500-477_AB.txt, test_1500-500000_A.txt, test_1500-500_AB.txt, test_1500-5768_AB.txt, test_1500-5999_AB.txt, test_1500-6000_AB.txt, test_1500-6001_AB.txt, test_1500-6268_AB.txt, test_1500-7024_AB.txt, test_1500-7500_AB.txt, test_1931-2546_A.txt, test_1931-3861_A.txt, test_1931-3862_A.txt, test_1931-3863_A.txt, test_1931-6721_A.txt, test_1931-7547_A.txt, test_1931-7723_A.txt, test_1931-7724_A.txt, test_1931-7725_A.txt, test_1931-8765_A.txt, test_1931-9463_A.txt, test_33-106_ABC.txt, test_33-131_ABC.txt, test_33-132_ABC.txt, test_33-133_ABC.txt, test_33-134_ABC.txt, test_33-146_ABC.txt, test_33-51_ABC.txt, test_33-65_ABC.txt, test_33-66_ABC.txt, test_33-67_ABC.txt, test_33-71_ABC.txt, test_578-114_AB.txt, test_578-1155_AB.txt, test_578-1156_AB.txt, test_578-1157_AB.txt, test_578-1984_AB.txt, test_578-2101_AB.txt, test_578-2230_AB.txt, test_578-2311_AB.txt, test_578-2312_AB.txt, test_578-2313_AB.txt, test_578-2728_AB.txt, test_84391-168781_A.txt, test_84391-168782_A.txt, test_84391-168783_A.txt, test_84391-263979_A.txt, test_84391-294799_A.txt, test_84391-337563_A.txt, test_84391-337564_A.txt, test_84391-337565_A.txt, test_84391-407535_A.txt, test_84391-420642_A.txt, test_84391-98907_A.txt, test_92-183_ABC.txt, test_92-184_ABC.txt, test_92-185_ABC.txt, test_92-310_ABC.txt, test_92-34_ABC.txt, test_92-367_ABC.txt, test_92-368_ABC.txt, test_92-369_ABC.txt, test_92-391_ABC.txt, test_92-434_ABC.txt, test_92-459_ABC.txt
Case Name Status Exec Time Memory
sample_01.txt AC 22 ms 796 KB
sample_02.txt WA 22 ms 796 KB
sample_03.txt AC 22 ms 788 KB
test_1-1_ABC.txt AC 21 ms 792 KB
test_1-500000_A.txt AC 21 ms 796 KB
test_1-500_ABC.txt AC 21 ms 792 KB
test_1-7500_AB.txt AC 21 ms 792 KB
test_100-103_ABC.txt WA 21 ms 788 KB
test_100-199_ABC.txt WA 21 ms 892 KB
test_100-1_ABC.txt AC 21 ms 716 KB
test_100-200_ABC.txt WA 21 ms 792 KB
test_100-201_ABC.txt WA 21 ms 792 KB
test_100-229_ABC.txt WA 22 ms 916 KB
test_100-300_ABC.txt WA 21 ms 792 KB
test_100-301_ABC.txt WA 21 ms 792 KB
test_100-399_ABC.txt AC 21 ms 920 KB
test_100-400_ABC.txt AC 21 ms 796 KB
test_100-401_ABC.txt TLE 2029 ms 812 KB
test_100-431_ABC.txt TLE 2029 ms 804 KB
test_100-473_ABC.txt TLE 2032 ms 796 KB
test_100-500000_A.txt TLE 2028 ms 932 KB
test_100-500_ABC.txt TLE 2028 ms 800 KB
test_100-7500_AB.txt TLE 2029 ms 804 KB
test_100000-175737_A.txt WA 26 ms 4140 KB
test_100000-199999_A.txt WA 28 ms 4652 KB
test_100000-1_A.txt AC 19 ms 908 KB
test_100000-200000_A.txt WA 26 ms 4640 KB
test_100000-200001_A.txt WA 28 ms 4736 KB
test_100000-300000_A.txt WA 31 ms 6564 KB
test_100000-300001_A.txt WA 31 ms 6568 KB
test_100000-321428_A.txt WA 33 ms 7084 KB
test_100000-383852_A.txt WA 35 ms 8240 KB
test_100000-399999_A.txt AC 35 ms 8488 KB
test_100000-400000_A.txt AC 35 ms 8484 KB
test_100000-400001_A.txt TLE 2029 ms 8612 KB
test_100000-461143_A.txt TLE 2029 ms 8608 KB
test_100000-482033_A.txt TLE 2030 ms 8604 KB
test_100000-500000_A.txt TLE 2029 ms 8608 KB
test_100000-500_A.txt WA 19 ms 912 KB
test_100000-7500_A.txt WA 19 ms 1048 KB
test_12376-24751_A.txt WA 20 ms 1300 KB
test_12376-24752_A.txt WA 22 ms 1304 KB
test_12376-24753_A.txt WA 20 ms 1304 KB
test_12376-4187_A.txt WA 22 ms 844 KB
test_12376-46199_A.txt WA 22 ms 1700 KB
test_12376-49503_A.txt AC 22 ms 1816 KB
test_12376-49504_A.txt AC 22 ms 1816 KB
test_12376-49505_A.txt TLE 2028 ms 1828 KB
test_12376-53158_A.txt TLE 2030 ms 1832 KB
test_12376-57785_A.txt TLE 2033 ms 1828 KB
test_12376-60441_A.txt TLE 2029 ms 1828 KB
test_1500-1_AB.txt AC 21 ms 804 KB
test_1500-2999_AB.txt WA 21 ms 836 KB
test_1500-3000_AB.txt WA 21 ms 924 KB
test_1500-3001_AB.txt WA 20 ms 804 KB
test_1500-4072_AB.txt WA 20 ms 916 KB
test_1500-477_AB.txt WA 19 ms 912 KB
test_1500-500000_A.txt TLE 2030 ms 936 KB
test_1500-500_AB.txt WA 23 ms 820 KB
test_1500-5768_AB.txt WA 21 ms 908 KB
test_1500-5999_AB.txt AC 22 ms 912 KB
test_1500-6000_AB.txt AC 22 ms 872 KB
test_1500-6001_AB.txt TLE 2029 ms 940 KB
test_1500-6268_AB.txt TLE 2028 ms 928 KB
test_1500-7024_AB.txt TLE 2028 ms 932 KB
test_1500-7500_AB.txt TLE 2029 ms 936 KB
test_1931-2546_A.txt WA 22 ms 920 KB
test_1931-3861_A.txt WA 20 ms 920 KB
test_1931-3862_A.txt WA 19 ms 912 KB
test_1931-3863_A.txt WA 19 ms 916 KB
test_1931-6721_A.txt WA 19 ms 916 KB
test_1931-7547_A.txt WA 19 ms 1044 KB
test_1931-7723_A.txt AC 19 ms 1044 KB
test_1931-7724_A.txt AC 19 ms 1044 KB
test_1931-7725_A.txt TLE 2028 ms 1068 KB
test_1931-8765_A.txt TLE 2028 ms 1064 KB
test_1931-9463_A.txt TLE 2031 ms 1056 KB
test_33-106_ABC.txt WA 19 ms 912 KB
test_33-131_ABC.txt AC 20 ms 864 KB
test_33-132_ABC.txt AC 19 ms 788 KB
test_33-133_ABC.txt TLE 2031 ms 808 KB
test_33-134_ABC.txt TLE 2029 ms 808 KB
test_33-146_ABC.txt TLE 2029 ms 812 KB
test_33-51_ABC.txt WA 22 ms 792 KB
test_33-65_ABC.txt WA 21 ms 796 KB
test_33-66_ABC.txt WA 20 ms 920 KB
test_33-67_ABC.txt WA 22 ms 916 KB
test_33-71_ABC.txt WA 22 ms 916 KB
test_578-114_AB.txt WA 21 ms 788 KB
test_578-1155_AB.txt WA 21 ms 924 KB
test_578-1156_AB.txt WA 22 ms 924 KB
test_578-1157_AB.txt WA 21 ms 844 KB
test_578-1984_AB.txt WA 20 ms 920 KB
test_578-2101_AB.txt WA 22 ms 920 KB
test_578-2230_AB.txt WA 19 ms 916 KB
test_578-2311_AB.txt AC 19 ms 916 KB
test_578-2312_AB.txt AC 20 ms 916 KB
test_578-2313_AB.txt TLE 2029 ms 936 KB
test_578-2728_AB.txt TLE 2027 ms 936 KB
test_84391-168781_A.txt WA 28 ms 4012 KB
test_84391-168782_A.txt WA 27 ms 4008 KB
test_84391-168783_A.txt WA 28 ms 4004 KB
test_84391-263979_A.txt WA 29 ms 5932 KB
test_84391-294799_A.txt WA 31 ms 6440 KB
test_84391-337563_A.txt AC 33 ms 7340 KB
test_84391-337564_A.txt AC 33 ms 7344 KB
test_84391-337565_A.txt TLE 2029 ms 7460 KB
test_84391-407535_A.txt TLE 2029 ms 7464 KB
test_84391-420642_A.txt TLE 2030 ms 7468 KB
test_84391-98907_A.txt WA 23 ms 2828 KB
test_92-183_ABC.txt WA 19 ms 788 KB
test_92-184_ABC.txt WA 19 ms 920 KB
test_92-185_ABC.txt WA 19 ms 792 KB
test_92-310_ABC.txt WA 19 ms 916 KB
test_92-34_ABC.txt WA 21 ms 916 KB
test_92-367_ABC.txt AC 21 ms 916 KB
test_92-368_ABC.txt AC 21 ms 792 KB
test_92-369_ABC.txt TLE 2034 ms 808 KB
test_92-391_ABC.txt TLE 2030 ms 808 KB
test_92-434_ABC.txt TLE 2030 ms 808 KB
test_92-459_ABC.txt TLE 2030 ms 808 KB