4 条题解
-
0
模拟算法:
#include<bits/stdc++.h> using namespace std; long long ans=0; int main(){ int n,m,j,temp; cin>>n>>m>>j; int left=1,right=m; for(int i=1;i<=j;i++){ cin>>temp; if(temp<left){ ans=ans+left-temp; left=temp; right=left+m-1; } if(temp>right){ ans=ans+temp-right; right=temp; left=right-(m-1); } } cout<<ans; return 0; }
- 1
信息
- ID
- 529
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 5
- 标签
- 递交数
- 1035
- 已通过
- 398
- 上传者