QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#542292 | #8932. Bingo | ucup-team1134# | RE | 0ms | 3620kb | C++23 | 3.3kb | 2024-09-01 00:05:25 | 2024-09-01 00:05:25 |
Judging History
answer
//ucup-a
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
#define vi vector<int>
#define vl vector<ll>
#define vii vector<pair<int,int>>
#define vll vector<pair<ll,ll>>
#define vvi vector<vector<int>>
#define vvl vector<vector<ll>>
#define vvii vector<vector<pair<int,int>>>
#define vvll vector<vector<pair<ll,ll>>>
#define vst vector<string>
#define pb push_back
#define all(x) (x).begin(),(x).end()
#define mkunique(x) sort(all(x));(x).erase(unique(all(x)),(x).end())
#define fi first
#define se second
#define mp make_pair
#define si(x) int(x.size())
const int mod=998244353,MAX=300005,INF=15<<26;
string add(string a,string b){
if(si(a)<si(b)) swap(a,b);
for(int i=0;i<si(b);i++){
a[si(a)-1-i]+=int(b[si(b)-1-i]-'0');
if(a[si(a)-1-i]>'9'&&si(a)-1-i){
a[si(a)-1-i]-=10;
a[si(a)-1-i-1]++;
}
}
for(int i=si(a)-1;i>=1;i--){
if(a[i]>'9'){
a[i]-=10;
a[i-1]++;
}
}
string res;
if(a[0]>'9'){
a[0]-=10;
res+='1';
}
res+=a;
for(int i=si(res)-1;i>=0;i--){
if(res[i]>'9'){
res[i]-=10;
res[i-1]++;
}
}
return res;
}
bool hukumu(string S,string T){
for(int i=0;i+si(T)-1<si(S);i++){
if(S.substr(i,si(T))==T) return true;
}
return false;
}
string solve(string S,ll M){
string T=to_string(M);
if(si(S)<=9){
ll N=stoll(S);
if(N<M){
return to_string(M);
}
}
ll ama=0;
for(char c:S){
ama*=10;
ama+=(c-'0');
ama%=M;
}
ll need=M-ama;
string B=to_string(need);
string res=add(S,B);
if(si(S)==si(T)) return res;
if(si(res)>si(S)) return res;
string ONE="1";
for(int st=si(S)-si(T);st>=max(0,si(S)-si(T)-10);st--){
string A=S;
for(int i=0;i<si(T);i++) A[st+i]=T[i];
for(int i=st+si(T);i<si(A);i++){
A[i]='0';
}
if(A>S){
chmin(res,A);
continue;
}
for(int i=st+si(T);i<si(A);i++){
A[i]=T[i];
}
A=add(A,ONE);
if(si(A)==si(S)&&A>S&&A.substr(st,si(T))==T) chmin(res,A);
}
S=add(S,ONE);
if(hukumu(S,T)) chmin(res,S);
for(int t=0;t<10;t++){
ll sum=0;
for(int i=max(0,si(S)-1-t);i<si(S);i++){
sum*=10;
sum+=(S[i]-'0');
}
if(sum==0) continue;
ll z=1;
for(int i=0;i<t;i++) z*=10;
string tasu=to_string(z-sum);
S=add(S,tasu);
if(hukumu(S,T)){
chmin(res,S);
break;
}
}
return res;
}
int main(){
std::ifstream in("text.txt");
std::cin.rdbuf(in.rdbuf());
cin.tie(0);
ios::sync_with_stdio(false);
int Q;cin>>Q;
while(Q--){
string S;cin>>S;
ll M;cin>>M;
auto res=solve(S,M);
cout<<res<<"\n";
}
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3620kb
input:
6 7 3 12 3 9 10 249 51 1369 37 2 1
output:
9 13 10 251 1370 3
result:
ok 6 lines
Test #2:
score: -100
Runtime Error
input:
100000 3196282243 28 7614814237 33 2814581084 97 1075124401 58 7822266214 100 1767317768 31 7189709841 75 9061337538 69 6552679231 38 9946082148 18 5497675062 54 7787300351 65 4310767261 68 4811341953 100 3265496130 31 8294404054 62 2845521744 90 1114254672 26 6442013672 13 3744046866 40 3289624367 ...
output:
3196282217 7614814251 2814581097 1075124424 7822100000 1767317747 7189709850 9061337569 6552679238 9946082160 5497675035 7787300365 4310767268 4811341000 3265496131 8294404062 2845521790 1114254674 6442013645 3744046843 3289624375 6477935360 1292587510 5504674689 2898807200 7882736025 2846033387 923...