QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#625186 | #7990. 广播 | liaoyingyu | WA | 10ms | 34980kb | C++17 | 779b | 2024-10-09 17:49:40 | 2024-10-09 17:49:40 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
#define F first
#define S second
#define pb push_back
const int mod=1e9+7;
const int N=2000+10;
using namespace std;//初始化
typedef pair <int, int> pi;
int m,n;
int a[N],b[N],dp[N][N]={0};
void solve(){
cin>>m>>n;
for(int i=1;i<=m;i++){
cin>>a[i];
}
for(int i=1;i<=n;i++){
cin>>b[i];
}
for(int i=1;i<=m;i++){
for(int j=1;j<=n;j++){
if(a[i]==b[j]||a[i]==1||b[i]==1){
dp[i][j]=dp[i-1][j-1];
}
else{
dp[i][j]=min(dp[i-1][j],dp[i][j-1])+1;
}
}
}
cout<<dp[m][n]<<endl;
}
signed main(){
ios::sync_with_stdio(false);cin.tie(0); cout.tie(0);
cout << fixed << setprecision(12);//小数保留位数
int t=1;
// cin>>t;
while(t--){
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3728kb
input:
4 2 2 1 3 2 4 2
output:
1
result:
ok single line: '1'
Test #2:
score: 0
Accepted
time: 0ms
memory: 3652kb
input:
1 1 2 3
output:
1
result:
ok single line: '1'
Test #3:
score: -100
Wrong Answer
time: 10ms
memory: 34980kb
input:
1997 1970 1235 1225 1169 368 1 1 1444 1 1189 775 788 114 1609 1169 821 1708 821 1370 1444 1356 775 1747 1661 775 1692 1960 788 1866 382 1444 1356 1868 309 788 1609 211 1160 1225 1370 1609 1692 1064 1356 788 1707 775 1707 1064 1356 1160 1692 368 129 1235 1868 1370 1160 775 368 129 1747 334 1503 1444 ...
output:
1828
result:
wrong answer 1st lines differ - expected: '1813', found: '1828'