結果
問題 | No.2734 Addition and Multiplication in yukicoder (Hard) |
ユーザー |
|
提出日時 | 2024-04-19 23:28:19 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,321 bytes |
コンパイル時間 | 2,601 ms |
コンパイル使用メモリ | 214,156 KB |
最終ジャッジ日時 | 2025-02-21 05:41:59 |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 8 WA * 28 |
ソースコード
#include<bits/stdc++.h>using namespace std;using ll=long long;#define rep(i,n) for(int i=0;i<n;i++)#define rrep(i,n) for(int i=(n)-1;i>=0;i--)#define all(v) v.begin(),v.end()#define rall(v) v.rbegin(),v.rend()template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;}template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;}const int MOD=998244353;int main(){ios::sync_with_stdio(false);std::cin.tie(nullptr);srand(time(NULL));int N;cin>>N;vector<string>S(N);for(int i=0;i<N;i++){cin>>S[i];}sort(all(S));set<int>se;for(int i=0;i<N;i++)se.insert(i);se.insert(1<<30);vector<bool>flag(N);string ans="";for(int i=0;i<N;i++){if(flag[i])continue;int at=*se.lower_bound(i+1);while(at<N&&S[at]+S[i]<=S[i]+S[at]){flag[at]=true;ans+=S[at];se.erase(at);at=*se.lower_bound(at+1);}flag[i]=true;ans+=S[i];se.erase(i);}int L=ans.size();vector<ll>ten(L);ten[0]=1;for(int i=1;i<L;i++)ten[i]=10*ten[i-1]%MOD;ll val=0;for(int i=0;i<L;i++){val+=(ans[i]-'0')*ten[L-1-i]%MOD;val%=MOD;}cout<<val<<"\n";}