1. 程式人生 > >HDU 5734 Acperience(數學推導)

HDU 5734 Acperience(數學推導)

Problem Description

Deep neural networks (DNN) have shown significant improvements in several application domains including computer vision and speech recognition. In computer vision, a particular type of DNN, known as Convolutional Neural Networks (CNN), have demonstrated state-of-the-art results in object recognition and detection.

Convolutional neural networks show reliable results on object recognition and detection that are useful in real world applications. Concurrent to the recent progress in recognition, interesting advancements have been happening in virtual reality (VR by Oculus), augmented reality (AR by HoloLens), and smart wearable devices. Putting these two pieces together, we argue that it is the right time to equip smart portable devices with the power of state-of-the-art recognition systems. However, CNN-based recognition systems need large amounts of memory and computational power. While they perform well on expensive, GPU-based machines, they are often unsuitable for smaller devices like cell phones and embedded electronics.

In order to simplify the networks, Professor Zhang tries to introduce simple, efficient, and accurate approximations to CNNs by binarizing the weights. Professor Zhang needs your help.

More specifically, you are given a weighted vector W=(w 1,w 2,...,w n). Professor Zhang would like to find a binary vector B=(b 1
,b 2,...,b n) (b i∈{+1,−1}) and a scaling factor α≥0 in such a manner that ∥W−αB∥ 2 is minimum. Note that ∥⋅∥ denotes the Euclidean norm (i.e. ∥X∥=√x 1 2+⋯+x n 2, where X=(x 1,x 2,...,x n)).   Input

There are multiple test cases. The first line of input contains an integer T, indicating the number of test cases. For each test case:

The first line contains an integers n (1≤n≤100000) -- the length of the vector. The next line contains n integers: w1,w2,...,wn (−10000≤wi≤10000).

Output

For each test case, output the minimum value of ∥W−αB∥ 2 as an irreducible fraction "p/q" where p, q are integers, q>0.   Sample Input

3
4
1 2 3 4
4
2 2 2 2
5
5 6 2 3 4

Sample Output

5/1
0/1
10/1

題意

給你一個n維向量w,求∥WαB2的最小值,其中B=(b1,b2,...,bn) (bi∈{+1,−1}),α≥0

題解

開始誤以為是平均數最小,WA了幾次後開始推式子

min(∥w−αb2)=min(∑(wi2-2αbiwi2bi2))

由於bi∈{+1,−1},易得bi*w≥0

=min(∑(wi2-2α|wi|+α2))=min(∑(α2-2α|wi|+wi2))=min(nα2-2α∑|wi|+∑wi2)

可知當α=∑|wi|/n時函式取到min

代入化簡得=-(∑|wi|)2/n+∑wi2

通分=(n∑wi2-(∑|wi|)2)/n

gc=gcd(n∑wi2-(∑|wi|)2,n)

所以p=(n∑wi2-(∑|wi|)2)/gc,q=n/gc

程式碼

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 
 4 #define ll long long
 5 const int maxn=1e5+5;
 6 int a[maxn];
 7 int main()
 8 {
 9     int t,n;
10     scanf("%d",&t);
11     while(t--)
12     {
13         scanf("%d",&n);
14         ll sum=0,ac=0;
15         for(int i=1;i<=n;i++)
16         {
17             scanf("%d",&a[i]);
18             sum+=abs(a[i]);
19             ac+=a[i]*1LL*a[i];
20         }
21         ll gc=__gcd(ac*n-sum*sum,1LL*n);
22         printf("%lld/%lld\n",(ac*n-sum*sum)/gc,n/gc);
23     }
24     return 0;
25 }