[codeforces Gym - 100187K] + 구성+욕심
4427 단어 codeforces탐욕스럽다구조
It is obvious that some beams emitted by distinct lasers can intersect. If two beams intersect each other, one joule of energy is released per second because of the interaction of the beams. So the more beams intersect, the more energy is released. Innokentiy noticed that if the energy generator releases exactly k joules per second, the perpetuum mobile will work up to 10 times longer. The scientist can direct any laser at any receiver, but he hasn’t thought of such a construction that will give exactly the required amount of energy yet. You should help the scientist to tune up the generator.
Input The only line contains two integers n and k (1 ≤ n ≤ 200000, ) separated by space — the number of lasers in the energy generator and the power of the generator Innokentiy wants to reach.
Output Output n integers separated by spaces. i-th number should be equal to the number of receiver which the i-th laser should be directed at. Both lasers and receivers are numbered from 1 to n. It is guaranteed that the solution exists. If there are several solutions, you can output any of them.
Examples input 4 5 output 4 2 3 1 input 5 7 output 4 2 5 3 1 input 6 0 output 1 2 3 4 5 6
역서수의 개수는 k~처음에 오름차순으로 배열되고 매번 현재의 첫 번째 L과 마지막 R을 교환하며 매번 공헌은 원소의 개수num+=n*2-3, L++, R-, n-=2이다.이전에 L, R을 교환했을 때 공헌도가 K보다 크면 실행: 나머지 첫 번째 요소인 L을 가능한 한 뒤로 옮겨서 L
#include
#include
using namespace std;
const int K = 2e5 + 10;
typedef long long LL;
int a[K];
int main()
{
LL n,k;
scanf("%lld %lld",&n,&k);
for(int i = 1; i <= n; i++) a[i] = i;
LL num = 0,pr = n,pl = 1,kl = n;
while(num < k){
if(num + kl * 2 - 3 <= k) swap(a[pl++],a[pr--]),num += kl * 2 - 3,kl -= 2;
else{
int i,j;
for(i = pl + 1,j = 1; i < pr; i++,j++)
if(num + j == k)
break;
num += j;
int p = a[pl];
for(j = pl + 1; j <= i; j++)
a[j - 1] = a[j];
a[i] = p;
pl++,pr--;
}
}
for(int i = 1; i <= n; i++)
printf("%d ",a[i]);
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Codeforces Round #715 Div. 2C The Sports Festival: 구간 DP전형구간 DP의 초전형. 이하, 0-indexed. 입력을 정렬하여 어디서나 시작하고 최적으로 좌우로 계속 유지하면 좋다는 것을 알 수 있습니다. {2000})$의 주문이 된다. 우선, 입력을 소트하여 n개의 요소를 $...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.