HDU 6342 Problem K. Expression in Memories 杭电多校第四场
本文最后更新于 2092 天前,其中的信息可能已经有所发展或是发生改变。

内容纲要

题意

解析题目的表达式是否合法
若合法输出合法串
不符合输出IMPOSSIBLE
?代表可以任意填写字符
输出任意满足题意答案即可

题解

根据题目进行判断
任何操作符都不能在开头和结尾
不能存在前缀零
分析?号应该填写的情况在大多数情况下应该是先填写数字
但是存在填写数字导致左边的数出现前缀零的情况,如
0?1 -> 001 这个时候只能填写任意的操作符
注意处理细节即可

AC代码

#include <iostream>
#include <algorithm>
#include <array>
#include <cstring>
#include <vector>

#define NUMBER 0
#define OPERATOR 1
#define UNKNOWN 2
using ll = long long;
using namespace std;

int judge(char t) {
    if (t >= '0' && t <= '9') {
        return NUMBER;
    } else if (t == '+' || t == '*') {
        return OPERATOR;
    } else {
        return UNKNOWN;
    }
}

bool isprezero(string s, int pos) {
    int cnt = 1;
    while (pos >= 0) {
        int tp = judge(s[pos]);
        if (tp == OPERATOR) {
            if (s[pos + 1] == '0') {
                return true;
            } else {
                return false;
            }
        }
        --pos;
    }
    return s[0] == '0';
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int T;
    cin >> T;
    while (T--) {
        string s;
        string exp;
        cin >> s;
        int len = s.length();
        int prev_type = judge(s[0]);
        if (prev_type == NUMBER) {
            if (s[0] == '0' && judge(s[1]) == NUMBER) {
                cout << "IMPOSSIBLE" << "\n";
                continue;
            } else {
                exp += s[0];
            }
        } else if (prev_type == OPERATOR) {
            cout << "IMPOSSIBLE" << "\n";
            continue;
        } else {
            prev_type = NUMBER;
            exp += '1';
        }
        bool valid = true;
        for (int i = 1; i < len; ++i) {
            int tp = judge(s[i]);
            if (tp == OPERATOR && (prev_type == tp || i + 1 >= len)) {
                cout << "IMPOSSIBLE" << "\n";
                valid = false;
                break;
            } else if (tp == NUMBER && prev_type == OPERATOR
                       && i + 1 < len && (judge(s[i + 1]) == NUMBER || judge(s[i + 1]) == UNKNOWN)) {
                if (s[i] == '0' && judge(s[i + 1]) == NUMBER) {
                    cout << "IMPOSSIBLE" << "\n";
                    valid = false;
                    break;
                } else if (s[i] == '0' && judge(s[i + 1]) == UNKNOWN) {
                    s[i + 1] = '+';
                }
            } else if (tp == UNKNOWN) {
                if (isprezero(s, i - 1)) {
                    if (i + 1 < len) {
                        s[i] = '+';
                        exp += '+';
                        prev_type = OPERATOR;
                    } else {
                        cout << "IMPOSSIBLE" << "\n";
                        valid = false;
                        break;
                    }
                    continue;
                } else {
                    prev_type = NUMBER;
                    exp += '1';
                    continue;
                }
            }
            prev_type = tp;
            exp += s[i];
        }
        if (valid) {
            cout << exp << "\n";
        }
    }
}
暂无评论

发送评论 编辑评论


				
|´・ω・)ノ
ヾ(≧∇≦*)ゝ
(☆ω☆)
(╯‵□′)╯︵┴─┴
 ̄﹃ ̄
(/ω\)
∠( ᐛ 」∠)_
(๑•̀ㅁ•́ฅ)
→_→
୧(๑•̀⌄•́๑)૭
٩(ˊᗜˋ*)و
(ノ°ο°)ノ
(´இ皿இ`)
⌇●﹏●⌇
(ฅ´ω`ฅ)
(╯°A°)╯︵○○○
φ( ̄∇ ̄o)
ヾ(´・ ・`。)ノ"
( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃
(ó﹏ò。)
Σ(っ °Д °;)っ
( ,,´・ω・)ノ"(´っω・`。)
╮(╯▽╰)╭
o(*////▽////*)q
>﹏<
( ๑´•ω•) "(ㆆᴗㆆ)
😂
😀
😅
😊
🙂
🙃
😌
😍
😘
😜
😝
😏
😒
🙄
😳
😡
😔
😫
😱
😭
💩
👻
🙌
🖕
👍
👫
👬
👭
🌚
🌝
🙈
💊
😶
🙏
🍦
🍉
😣
Source: github.com/k4yt3x/flowerhd
颜文字
Emoji
小恐龙
花!
上一篇
下一篇