제출 #599152

#제출 시각아이디문제언어결과실행 시간메모리
599152_martynasASM (LMIO18_asm)C++11
26 / 100
97 ms332 KiB
#include <bits/stdc++.h>

using namespace std;

#define DEBUG(x) cerr << #x << " = " << x << "\n";

using ll = long long;

const int MXN = 55;

int n;
ll A[MXN];
string B[MXN];
ll X[MXN];

int main()
{
    cin >> n;
    for(int i = 0; i < n; i++) {
        cin >> A[i] >> B[i];
    }

    if(n == 1) {
        ll x = A[0];
        ll x0 = stoll(B[0]);
        stringstream sstr;
        int commands = 0;
        if(x0 != x) {
            if(x0 > x) {
                sstr << "add " << x0-x << "\n";
                commands++;
            }
            else {
                sstr << "multiply " << 0 << "\n";
                commands++;
                if(x0) {
                    sstr << "add " << x0 << "\n";
                    commands++;
                }
            }
        }
        commands++;
        sstr << "print\n";
        cout << commands << "\n";
        cout << sstr.str();
        return 0;
    }

    const int L = 17;
    string best = "";
    int best_commands = 10000;
    int cnt = 0, ccnt = 0;

    vector<int> bits;

    // b0, b1 - spliting (printing) points
    // never makes sense to multiply by 0:
    // can be changed to mupltiply by 10^x and addition then print
    for(int b = 0; b < (1<<L); b++) {
        int temp = b;
        vector<int> gaps;
        while(temp) {
            gaps.push_back(__builtin_ctz(temp));
            temp >>= __builtin_ctz(temp)+1;
        }
        if(!is_sorted(gaps.begin(), gaps.end())) continue;
        bits.push_back(b);
    }

    cerr << bits.size() << "\n";

    for(int b0 : bits) {
        for(int b1 : bits) {
            for(int k = 0; k < n; k++) {
                X[k] = A[k];
            }
            // ax+b=x0
            // ay+b=y0
            bool flag = false;
            int commands = 0;
            vector<pair<ll, ll>> C;
            int i = 0, j = 0;
            ll x = A[0], y = A[1];
            while(i < B[0].size() || j < B[1].size()) {
                ll x0 = 0, y0 = 0;
                // construct numbers until break or end
                while(i < B[0].size()) {
                    x0 *= 10;
                    x0 += B[0][i]-'0';
                    i++;
                    if(((b0 >> (i-1)) & 1)) {
                        break;
                    }
                }
                while(j < B[1].size()) {
                    y0 *= 10;
                    y0 += B[1][j]-'0';
                    j++;
                    if(((b1 >> (j-1)) & 1)) {
                        break;
                    }
                }
                // ax+b=x0
                // ay+b=y0 | (-1)
                // a(x-y)=x0-y0
                // a = x0-y0/(x-y)
                // b = x0-ax
                // (visos A[i] reiksmes skirtingos)
                if((x0-y0)%(x-y) != 0) {
                    flag = true; break;
                }
                ll a = (x0-y0)/(x-y);
                ll b = x0-a*x;
                if(a < 0 || b < 0) {
                    flag = true; break;
                }
//                DEBUG(x);
//                DEBUG(y);
//                DEBUG(x0);
//                DEBUG(y0);
                if(a != 1) {
                    commands++;
                }
                if(b != 0) {
                    commands++;
                }
                commands++;
                C.push_back({a, b});
            }
            if(flag) continue;
            if(commands < best_commands) {
                for(int k = 0; k < n; k++) {
                    for(auto p : C) {
                        X[k] *= p.first, X[k] += p.second;
                    }
                    if(B[k] != to_string(X[k])) {
                        flag = true;
                    }
                }
                if(flag) continue;
                best_commands = commands;
                best = "";
                for(auto p : C) {
                    if(p.first != 1) {
                        best += "multiply " + to_string(p.first) + "\n";
                    }
                    if(p.second != 0) {
                        best += "add " + to_string(p.second) + "\n";
                    }
                    best += "print\n";
                }
            }
            // found answer
            //return 0;
        }
    }

    if(best == "") {
        cout << "-1\n";
    }
    else {
        cout << best_commands << "\n";
        cout << best;
    }

    return 0;
}
/*
2
1 2
2 3

2
11 1122
22 2244
*/

컴파일 시 표준 에러 (stderr) 메시지

asm.cpp: In function 'int main()':
asm.cpp:84:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   84 |             while(i < B[0].size() || j < B[1].size()) {
      |                   ~~^~~~~~~~~~~~~
asm.cpp:84:40: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   84 |             while(i < B[0].size() || j < B[1].size()) {
      |                                      ~~^~~~~~~~~~~~~
asm.cpp:87:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   87 |                 while(i < B[0].size()) {
      |                       ~~^~~~~~~~~~~~~
asm.cpp:95:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   95 |                 while(j < B[1].size()) {
      |                       ~~^~~~~~~~~~~~~
asm.cpp:52:9: warning: unused variable 'cnt' [-Wunused-variable]
   52 |     int cnt = 0, ccnt = 0;
      |         ^~~
asm.cpp:52:18: warning: unused variable 'ccnt' [-Wunused-variable]
   52 |     int cnt = 0, ccnt = 0;
      |                  ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...