#include <iostream> #include<string> using namespace std; int main() { while(1) { int N; long long int A,B,C; cin>>N>>A>>B>>C; string ans[N]; for(int i=0;i<N;i++) { cin>>ans[i]; } long long int temp=C; int flag=1; int place_le=0,place_yue=0; while(1) { temp=(A*temp+B)%6+1; if(flag==1) { long long int place=place_le+temp; if(place>N-1){place=N-1-(place-N+1);} if(ans[place]=="N")place_le=place; else { int num=ans[place][1]-'0'; place_le=num; } flag=-1; } else if(flag==-1) { long long int place=place_yue+temp; if(place>N-1){place=N-1-(place-N+1);} if(ans[place]=="N")place_yue=place; else { int num=ans[place][1]-'0'; place_yue=num; } flag=1; } if(place_le==N-1){cout<<"Lele"<<endl;break;} else if(place_yue==N-1){cout<<"Yueyue"<<endl;break;} } } return 0; }
时间: 2024-04-09 17:30:56 浏览: 77
这是一个使用C++编写的程序,它接受一些输入并进行一系列计算,并打印出结果。具体来说,该程序会持续接受以下输入:
- 一个整数N
- 三个长整型数A、B和C
- N个字符串ans[i]
然后,程序会执行一些计算,并在满足一定条件时打印出"Lele"或"Yueyue"。程序的主要逻辑是一个while循环,其中包含一些条件判断和计算操作。
请注意,这只是程序的逻辑描述,并不包含完整的代码实现。如果您需要完整的代码,请提供更多信息,或提供更具体的要求。
相关问题
#include <iostream> #include <algorithm> #include <string> #include <cstdio> #include <cmath> #include <set> #include <map> using namespace std; //const int N = 1e5 + 10; //typedef long long ll; int main() { int t; cin >> t; while (t--) { int n; set<string>a; string s; cin >> n >> s; int t = 0; for (int i = 0; i < s.size(); i++) { t = s.find(s[t]); a.insert(s.substr(i, 1)); } for (int i = 0; i < a.size(); i++) cout << a[i]; cout << endl; } return 0; }有什么问题
这段代码存在一些问题:
1. 在第二个 for 循环中,使用了下标访问 set 容器,这是错误的,因为 set 容器不支持下标访问。
2. 在第二个 for 循环中,使用了 a.size(),这也是错误的,因为 set 容器没有 size() 方法,应该使用 a.size()。
3. 在第一个 for 循环中,应该使用 s.substr(i, 1) 而不是 s.substr(0, t+1),因为后者会将 s 的前 t+1 个字符作为子串,而不是从 i 开始的一个字符。
4. 在第一个 for 循环中,应该将 a.insert() 放在 t = s.find(s[t]) 的后面,因为插入的是 s.substr(i, 1),插入顺序应该是从前往后。
修正后的代码如下:
```c++
#include <iostream>
#include <algorithm>
#include <string>
#include <cstdio>
#include <cmath>
#include <set>
#include <map>
using namespace std;
int main() {
int t;
cin >> t;
while (t--) {
int n;
set<string> a;
string s;
cin >> n >> s;
int t = 0;
for (int i = 0; i < s.size(); i++) {
a.insert(s.substr(i, 1));
t = s.find(s[t]);
}
for (auto it = a.begin(); it != a.end(); it++) cout << *it;
cout << endl;
}
return 0;
}
```
#include <iostream> #include <cstdio> #include <vector> #include <iterator> #include <algorithm> #include <string> #include <set> #include <map> using namespace std; //cout<< //cin>> set<long long int>::iterator it; set<long long int>::iterator it1; bool pd(set<long long int > set1,set<long long int> set2) { if(set1.size()!=set2.size())return false; for(it=set1.begin(),it1=set2.begin();it!=set1.end();it++,it1++) { if(*it!=*it1)return false; } return true; } int main() { set<long long int> set1,set2; long long int x; while((cin>>x)) { if(x!=0)set1.insert(x); while(cin>>x&&x!=0) {set1.insert(x);} while(cin>>x&&x!=0) { set2.insert(x); } if(pd(set1,set2)==true)cout<<"YES"<<endl; else cout<<"NO"<<endl; set1.clear(); set2.clear(); } // // set_intersection()//交集 // set_union()//并集 // set_difference()//差集 // set_symmetric_difference() return 0; }这段代码哪里有问题
这段代码没有明显的语法错误,但是存在以下问题:
1. 函数 `pd()` 中的两个 `set` 传入的参数应该是 `const set<long long int>&` 类型,因为函数内部并不修改这两个参数。
2. 函数 `pd()` 中的两个 `set` 比较可以使用 `std::set::operator==` 来直接比较两个 `set` 是否相等,无需手动遍历比较。
3. 在输入数据时,当输入一个数为0时,程序会跳出第一个循环,但是没有清空输入流中的其他字符,导致第二个循环开始时读取到的是上一次输入流中的剩余字符,进而导致结果错误。
以下是修改后的代码:
```
#include <iostream>
#include <set>
using namespace std;
bool pd(const set<long long int>& set1, const set<long long int>& set2) {
return set1 == set2;
}
int main() {
set<long long int> set1, set2;
long long int x;
while (cin >> x) {
if (x != 0) {
set1.insert(x);
}
else {
break;
}
}
while (cin >> x) {
if (x != 0) {
set2.insert(x);
}
else {
break;
}
}
if (pd(set1, set2)) {
cout << "YES" << endl;
}
else {
cout << "NO" << endl;
}
return 0;
}
```
阅读全文