记录一个菜逼的成长。。
按区间分类讨论。
#include <cstdio>
#include <iostream>
#include <cstring>
#include <string>
#include <algorithm>
#include <cstdlib>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <list>
#include <deque>
#include <cctype>
#include <bitset>
#include <cmath>
using namespace std;
#define ALL(v) (v).begin(),(v).end()
#define cl(a) memset(a,0,sizeof(a))
#define bp __builtin_popcount
#define pb push_back
#define fin freopen("D://in.txt","r",stdin)
#define fout freopen("D://out.txt","w",stdout)
#define lson t<<1,l,mid
#define rson t<<1|1,mid+1,r
#define seglen (node[t].r-node[t].l+1)
typedef long long LL;
typedef unsigned long long ULL;
typedef pair<int,int> PII;
typedef pair<LL,LL> PLL;
typedef vector<PII> VPII;
const int INF = 0x3f3f3f3f;
const int MOD = 1e9 + 7;
template <typename T>
inline void read(T &x){
T ans=0;
char last=' ',ch=getchar();
while(ch<'0' || ch>'9')last=ch,ch=getchar();
while(ch>='0' && ch<='9')ans=ans*10+ch-'0',ch=getchar();
if(last=='-')ans=-ans;
x = ans;
}
inline bool DBread(double &num)
{
char in;double Dec=0.1;
bool IsN=false,IsD=false;
in=getchar();
if(in==EOF) return false;
while(in!='-'&&in!='.'&&(in<'0'||in>'9'))
in=getchar();
if(in=='-'){IsN=true;num=0;}
else if(in=='.'){IsD=true;num=0;}
else num=in-'0';
if(!IsD){
while(in=getchar(),in>='0'&&in<='9'){
num*=10;num+=in-'0';}
}
if(in!='.'){
if(IsN) num=-num;
return true;
}else{
while(in=getchar(),in>='0'&&in<='9'){
num+=Dec*(in-'0');Dec*=0.1;
}
}
if(IsN) num=-num;
return true;
}
template <typename T>
inline void write(T a) {
if(a < 0) { putchar('-'); a = -a; }
if(a >= 10) write(a / 10);
putchar(a % 10 + '0');
}
/******************head***********************/
const int maxn = 100000 + 10;
LL a[maxn];
int n,m;
LL query(int l1,int r1,int l2,int r2,int pos)
{
if(l1 + pos - 1 < l2)return a[l1+pos-1];
if(pos > (l2 - l1) + 2 * (r1 - l2 + 1)){ // 1 2 3 4 3 4 5 6 7 8 9 10 11
pos -= (l2 - l1) + 2 * (r1 - l2 + 1);
return a[r1 + pos];
}
pos -= l2 - l1;
int tmp = pos / 2;
if(pos & 1)return a[l2+tmp];
return a[l2+tmp-1];
}
int main()
{
//fin;
//fout;
int T;
double ans;read(T);
while(T--){
read(n),read(m);
for( int i = 1; i <= n; i++ )
read(a[i]);
int l1,r1,l2,r2;
while(m--){
scanf("%d%d%d%d",&l1,&r1,&l2,&r2);
if(l1 > l2)swap(l1,l2);
if(r1 > r2)swap(r1,r2);
int len1 = r1 - l1 + 1,len2 = r2 - l2 + 1;
int sum = len1 + len2,mid = sum >> 1;
if(r1 < l2){
if(len1 == len2){
ans = (a[r1] + a[l2]) / 2.0;
}
else {
if(len1 > len2){
if(sum & 1) ans = a[l1 + mid];
else ans = (a[l1 + mid] + a[l1 + mid - 1]) / 2.0;
}
else {
if(sum & 1)ans = a[r2 - mid];
else ans = (a[r2 - mid] + a[r2 - mid + 1]) / 2.0;
}
}
}
else {
if(sum & 1)ans = query(l1,r1,l2,r2,sum/2+1);
else ans = (query(l1,r1,l2,r2,sum/2) + query(l1,r1,l2,r2,sum/2+1)) / 2.0;
}
printf("%.1f\n",ans);
}
}
return 0;
}