加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
MP3光标位置.cpp 1.81 KB
一键复制 编辑 原始数据 按行查看 历史
墨澜1024 提交于 2022-05-27 07:34 . MP3光标位置
#include<iostream>
#include<string>
using namespace std;
void MP3(int n, string str)
{
if (n <= 4)
{
int pos = 1;
for (auto& it : str)
{
if (it == 'U')
{
pos--;
}
else
{
pos++;
}
}
for (int i = 1; i <= n; ++i)
{
cout << i << " ";
}
cout << "\n";
pos >= 0 ? cout << pos % n << "\n" : cout << (n + pos + 1) % n << "\n";
}
else
{
int pos = 1, head = 1, end = 4;
for (auto& it : str)
{
if (it == 'U')
{
pos--;
if (pos < 1)
{
pos = n;
head = n - 4 + 1;
end = n;
}
else
{
if (pos < head)
{
head = pos;
end--;
}
}
}
else
{
pos++;
if (pos > n)
{
pos = 1;
head = 1;
end = 4;
}
else
{
if (pos > end)
{
head++;
end = pos;
}
}
}
}
for (int i = head; i <= end; ++i)
{
cout << i << " ";
}
cout << "\n";
cout << pos << "\n";
}
}
int main()
{
int n;
string str;
while (cin >> n >> str)
{
MP3(n, str);
}
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化