1 Star 0 Fork 1

saigon/Algorithms

forked from charlieshu/Algorithms 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
P1076 [NOIP2012 普及组] 寻宝.cpp 716 Bytes
一键复制 编辑 原始数据 按行查看 历史
charlie 提交于 2024-01-09 00:01 . move from github to gitee
#include <iostream>
#include <vector>
#define mod 20123
using namespace std;
int main(){
int ans=0;
int n,m;
cin>>n>>m;
int next[n][m];
vector<int> stair[n];
for(int i=0;i<n;i++){
for(int j=0;j<m;j++){
int s;
cin>>s>>next[i][j];
if(s == 1)
stair[i].push_back(j);
}
}
int index;
cin>>index;
for(int k=0;k<n;k++){
ans += next[k][index];
ans %= mod;
int room=0;
for(int i=0;i<stair[k].size();i++){
if(stair[k][i] >= index){
room = i;
break;
}
}
room = (room+next[k][index]-1)%stair[k].size();
index = stair[k][room];
}
cout<<ans;
return 0;
}
/*
3 3
0 2
1 3
0 1
1 1
1 2
0 1
0 1
1 2
0 3
2
*/
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/saigonshu/algorithm.git
git@gitee.com:saigonshu/algorithm.git
saigonshu
algorithm
Algorithms
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385