結果
問題 | No.297 カードの数式 |
ユーザー | peroon |
提出日時 | 2019-04-24 19:04:35 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,182 bytes |
コンパイル時間 | 1,961 ms |
コンパイル使用メモリ | 178,344 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 17:33:32 |
合計ジャッジ時間 | 2,955 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 1 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; #define FOR(i,a,b) for(ll i=(a);i<(b);++i) #define ALL(v) (v).begin(), (v).end() #define p(s) cout<<(s)<<endl #define p2(s, t) cout << (s) << " " << (t) << endl #define br() p("") #define pn(s) cout << (#s) << " " << (s) << endl // 構文解析セット typedef string::const_iterator State; class ParseError {}; ll number(State &begin) { ll ret = 0; while (isdigit(*begin)) { ret *= 10; ret += *begin - '0'; begin++; } return ret; } ll term(State &begin) { ll ret = number(begin); for (;;) { if (*begin == '*') { begin++; ret *= number(begin); } else if (*begin == '/') { begin++; ret /= number(begin); } else { break; } } return ret; } ll expression(State &begin) { ll ret = term(begin); for (;;) { if (*begin == '+') { begin++; ret += term(begin); } else if (*begin == '-') { begin++; ret -= term(begin); } else { break; } } return ret; } // 構文解析セットおわり int main(){ cin.tie(0); ios::sync_with_stdio(false); // input ll N; cin >> N; ll plus = 0; ll minus = 0; string s; FOR(i, 0, N){ char c; cin >> c; if(c=='+') plus++; if(c=='-') minus++; if(isdigit(c)) s.push_back(c); } string s_max; string s_min; // 全て+ if(minus==0){ // 最小値 string t = s; sort(ALL(t)); ll L = plus+1; string box[L]; ll index = 0; for(char c : s){ box[index].push_back(c); index++; index %= L; } stringstream ss; FOR(i, 0, L){ if(i){ ss << '+'; } ss << box[i]; } s_min = ss.str(); // pn(s_min); // 最大値 stringstream ss_max; t = s; L = s.size(); sort(ALL(t), greater<char>()); ss_max << t.substr(0, L-plus); FOR(i, L-plus, L){ ss_max << '+' << s[i]; } s_max = ss_max.str(); // pn(s_max); } else if(plus==0 && minus>0){ // マイナスのみ // 最大値 string t = s; sort(ALL(t), greater<char>()); ll L = t.size(); stringstream ss; ss << t.substr(0, L-minus); string sub = t.substr(L-minus); for(char c : sub){ ss << '-' << c; } s_max = ss.str(); // pn(s_max); // 最小値 t = s; sort(ALL(t)); stringstream ss_min; FOR(i, 0, minus){ ss_min << t[i] << '-'; } sub = t.substr(minus); sort(ALL(sub), greater<char>()); ss_min << sub; s_min = ss_min.str(); // pn(s_min); } else{ // +, -の混合 // 最大値 string t = s; sort(ALL(t)); string s_for_minus = t.substr(0, minus); string s_for_plus = t.substr(minus, plus); string rest = t.substr(minus+plus); sort(ALL(rest), greater<char>()); stringstream ss; ss << rest; for(char c : s_for_plus){ ss << '+' << c; } for(char c : s_for_minus){ ss << '-' << c; } s_max = ss.str(); // pn(s_max); // 最小値 t = s; sort(ALL(t)); s_for_plus = t.substr(0, plus); s_for_minus = t.substr(plus, minus); rest = t.substr(plus+minus); sort(ALL(rest), greater<char>()); stringstream ss2; for(char c : s_for_plus){ ss2 << c << '+'; } for(char c : s_for_minus){ ss2 << c << '-'; } ss2 << rest; s_min = ss2.str(); // pn(s_min); } State it = s_max.begin(); ll ma = expression(it); State it2 = s_min.begin(); ll mi = expression(it2); p2(ma, mi); return 0; }