結果
問題 | No.2734 Addition and Multiplication in yukicoder (Hard) |
ユーザー | otoshigo |
提出日時 | 2024-04-19 23:02:22 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,484 bytes |
コンパイル時間 | 2,824 ms |
コンパイル使用メモリ | 222,012 KB |
実行使用メモリ | 9,888 KB |
最終ジャッジ日時 | 2024-10-11 17:10:36 |
合計ジャッジ時間 | 10,829 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
#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); 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 ok=i+1,ng=N; while(ng-ok>1){ int m=(ok+ng)/2; if(S[m]+S[i]<=S[i]+S[m])ok=i; else ng=i; } if(S[ok]+S[i]<=S[i]+S[ok]){ int j=*se.lower_bound(-ok); while(j>-i){ flag[-j]=true; ans+=S[-j]; se.erase(-j); j=*se.lower_bound(-j+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"; }