// pec.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include <iostream>
#include <vector>
#include <algorithm>
#include <queue>
#include <iomanip>
#include <set>
using namespace std;
int main()
{
int n;
int m;
cin >> n;
cin >> m;
string s;
cin >> s;
vector<int>v(n + 1);
for (int i = 1; i < n + 1; i++)
{
if (s[i - 1] == 'W')
{
v[i] = 1;
}
else if (s[i - 1] == 'T')
{
v[i] = 2;
}
}
vector<int>prefix(n + 1);
prefix[0] = 0;
for (int i = 1; i < n + 1; i++)
{
prefix[i] = prefix[i - 1] + v[i];
}
vector<int>jedna(n + 1, 1e9+36);
for (int i = n; i > 0; i--)
{
if (v[i] == 1)
{
jedna[i] = i;
}
else
{
if (i != n)
{
jedna[i] = jedna[i + 1];
}
}
}
while (m--)
{
int k;
cin >> k;
if (k > prefix[n])
{
cout << "NIE" << endl;
}
else
{
int index = lower_bound(prefix.begin(), prefix.end(),k)-prefix.begin();
if (prefix[index] == k)
{
cout << 1 << ' ';
cout << index << endl;
}
else
{
int mini = min(jedna[1], jedna[index] - index + 1);
int l = mini;
int r = mini + index - 1;
if (r > n)
{
cout << "NIE" << endl;
}
else
{
if (prefix[r] - prefix[l - 1] == k)
{
cout << l << ' ';
cout << r << endl;
}
else
{
cout << l + 1 << ' ';
cout << r << endl;
}
}
}
}
}
return 0;
//std::cout << "Hello World!\n";
}
// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
// Debug program: F5 or Debug > Start Debugging menu
// Tips for Getting Started:
// 1. Use the Solution Explorer window to add/manage files
// 2. Use the Team Explorer window to connect to source control
// 3. Use the Output window to see build output and other messages
// 4. Use the Error List window to view errors
// 5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
// 6. In the future, to open this project again, go to File > Open > Project and select the .sln file
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Correct |
0 ms |
204 KB |
Output is correct |
3 |
Correct |
1 ms |
204 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
2 |
Correct |
1 ms |
204 KB |
Output is correct |
3 |
Correct |
1 ms |
204 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Correct |
1 ms |
204 KB |
Output is correct |
3 |
Correct |
45 ms |
456 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
22 ms |
468 KB |
Output is correct |
2 |
Correct |
22 ms |
508 KB |
Output is correct |
3 |
Correct |
27 ms |
536 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
52 ms |
804 KB |
Output is correct |
2 |
Correct |
45 ms |
836 KB |
Output is correct |
3 |
Correct |
219 ms |
1888 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
184 ms |
2160 KB |
Output is correct |
2 |
Correct |
934 ms |
6316 KB |
Output is correct |
3 |
Correct |
458 ms |
3896 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
164 ms |
2332 KB |
Output is correct |
2 |
Correct |
237 ms |
2524 KB |
Output is correct |
3 |
Correct |
471 ms |
4592 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
709 ms |
6052 KB |
Output is correct |
2 |
Correct |
688 ms |
5712 KB |
Output is correct |
3 |
Correct |
957 ms |
8868 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1455 ms |
13932 KB |
Output is correct |
2 |
Correct |
1484 ms |
13440 KB |
Output is correct |
3 |
Correct |
1682 ms |
17624 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1257 ms |
15020 KB |
Output is correct |
2 |
Correct |
1691 ms |
17988 KB |
Output is correct |
3 |
Execution timed out |
2033 ms |
21388 KB |
Time limit exceeded |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2067 ms |
26852 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2065 ms |
27576 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |