This set of questions makes my balls hurt
250
Simple questions. Asking whether a number can be expressed as several powers of a certain prime number
I used a method that loses accuracy
In fact, as long as the square determination is completed and the prime numbers are directly enumerated, it will be OK
vector<int>ans;bool check(int x) { int m = (int)sqrt(x * 1.0) + 1; if(x == 2) return true; for(int i = 2; i <br> <br> <p></p> <p><br> </p> <p>500 </p> <p>Interval DP</p> <p>The meaning of the question is Say, given an A string, a B string </p> <p> only contains 0 and 1, and then use a series of reverse operations to turn A into B</p> <p>reverse(i,j) means The interval i, j is reversed </p> <p> and then there is a restriction on this series of operations </p> <p> that is, after an operation is completed, the next operation must be performed in a sub-interval of the interval of this operation, each time This is true for every operation </p> <p> Then this is definitely convenient for interval DP </p> <p> I saw someone wrote a very violent DFS, but I didn’t dare to try it because the complexity is impossible to calculate </p> <p>dp[k][i][j][0] represents the number of steps required to convert a substring with length k starting at position i of string a into a substring with length k starting at position j of string b without flipping </p> <p>dp[k][i][j][1] represents the number of steps required to flip the substring of length k starting at position i of string a into a substring of length k starting at position j of string b <br> </p> <p></p> <pre name="code" class="sycode"> int n = a.size(); memset(dp, 0x3f, sizeof(dp)); for(int j = 0; j = 1000 ? -1: dp[n][0][0][0];
1000
The formula for this question is very simple
n*(1/n 1 /(n - 1) 1/ (n - 2) ... 1/(n - k 1) )
Here comes the key question
n and k are huge
Then I discovered that this is a harmonic series summation
When the number is large, there is only an approximate formula
Then try it
(1/n 1/(n - 1 ) 1/ (n - 2) ... 1/(n - k 1) ) is approximately equal to log(n 1) R
R is Euler’s constant
Use this formula when you finish k. Otherwise, just for
But wa came out
Finally I found someone else did this. The original formula was log((n 1) / ( n - k 1))
Then there is a function called log1p, what does it do? log1p(x) returns log(x 1)
But the problem comes, when x is huge When using log1p, the accuracy of log1p is relatively high. When using log, x 1 will lose the accuracy
Then we just make do with it. If log1p is not enough, the denominator is reduced by 0.5, which is used to control the accuracy.
This makes my balls hurt.
After finishing it, I found that there were a lot of things in the room that didn’t need log1p, so I deleted them all
double expectedBuy(string n, string k) { long long x = gao(n); long long y = gao(k); double ans = 0; long long s = x - y + 1; long long mx = 10000000; while(s <br> <br> <p></p> <p><br> </p>

The roles of HTML, CSS and JavaScript in web development are: HTML is responsible for content structure, CSS is responsible for style, and JavaScript is responsible for dynamic behavior. 1. HTML defines the web page structure and content through tags to ensure semantics. 2. CSS controls the web page style through selectors and attributes to make it beautiful and easy to read. 3. JavaScript controls web page behavior through scripts to achieve dynamic and interactive functions.

HTMLisnotaprogramminglanguage;itisamarkuplanguage.1)HTMLstructuresandformatswebcontentusingtags.2)ItworkswithCSSforstylingandJavaScriptforinteractivity,enhancingwebdevelopment.

HTML is the cornerstone of building web page structure. 1. HTML defines the content structure and semantics, and uses, etc. tags. 2. Provide semantic markers, such as, etc., to improve SEO effect. 3. To realize user interaction through tags, pay attention to form verification. 4. Use advanced elements such as, combined with JavaScript to achieve dynamic effects. 5. Common errors include unclosed labels and unquoted attribute values, and verification tools are required. 6. Optimization strategies include reducing HTTP requests, compressing HTML, using semantic tags, etc.

HTML is a language used to build web pages, defining web page structure and content through tags and attributes. 1) HTML organizes document structure through tags, such as,. 2) The browser parses HTML to build the DOM and renders the web page. 3) New features of HTML5, such as, enhance multimedia functions. 4) Common errors include unclosed labels and unquoted attribute values. 5) Optimization suggestions include using semantic tags and reducing file size.

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

The role of HTML is to define the structure and content of a web page through tags and attributes. 1. HTML organizes content through tags such as , making it easy to read and understand. 2. Use semantic tags such as, etc. to enhance accessibility and SEO. 3. Optimizing HTML code can improve web page loading speed and user experience.

HTMLisaspecifictypeofcodefocusedonstructuringwebcontent,while"code"broadlyincludeslanguageslikeJavaScriptandPythonforfunctionality.1)HTMLdefineswebpagestructureusingtags.2)"Code"encompassesawiderrangeoflanguagesforlogicandinteract

HTML, CSS and JavaScript are the three pillars of web development. 1. HTML defines the web page structure and uses tags such as, etc. 2. CSS controls the web page style, using selectors and attributes such as color, font-size, etc. 3. JavaScript realizes dynamic effects and interaction, through event monitoring and DOM operations.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor