Task: | Subarray Sums II |
Sender: | bubu2006 |
Submission time: | 2024-11-22 22:41:02 +0200 |
Language: | C++ (C++20) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.00 s | details |
#2 | ACCEPTED | 0.00 s | details |
#3 | WRONG ANSWER | 0.00 s | details |
#4 | ACCEPTED | 0.00 s | details |
#5 | ACCEPTED | 0.17 s | details |
#6 | ACCEPTED | 0.14 s | details |
#7 | WRONG ANSWER | 0.02 s | details |
#8 | ACCEPTED | 0.06 s | details |
#9 | ACCEPTED | 0.08 s | details |
#10 | ACCEPTED | 0.08 s | details |
#11 | ACCEPTED | 0.08 s | details |
#12 | ACCEPTED | 0.13 s | details |
#13 | ACCEPTED | 0.16 s | details |
#14 | ACCEPTED | 0.17 s | details |
#15 | ACCEPTED | 0.16 s | details |
#16 | WRONG ANSWER | 0.00 s | details |
#17 | ACCEPTED | 0.00 s | details |
#18 | ACCEPTED | 0.08 s | details |
#19 | ACCEPTED | 0.13 s | details |
#20 | ACCEPTED | 0.07 s | details |
#21 | ACCEPTED | 0.13 s | details |
#22 | ACCEPTED | 0.16 s | details |
#23 | ACCEPTED | 0.16 s | details |
#24 | ACCEPTED | 0.00 s | details |
#25 | ACCEPTED | 0.12 s | details |
#26 | ACCEPTED | 0.12 s | details |
#27 | WRONG ANSWER | 0.08 s | details |
#28 | WRONG ANSWER | 0.13 s | details |
Code
#pragma GCC optimize("O3,unroll-loops") #include <bits/stdc++.h> using namespace std; #define int long long #define rep(i, a, b) for(int i = a; i < (b); ++i) #define all(x) begin(x), end(x) #define sz(x) (int)(x).size() typedef long long ll; typedef pair<int, int> pii; typedef vector<int> vi; typedef long double ld; string to_string(string s) { return '"' + s + '"'; } string to_string(const char* s) { return to_string((string) s); } string to_string(bool b) { return (b ? "true" : "false"); } template <typename A, typename B> string to_string(pair<A, B> p) { return "(" + to_string(p.first) + ", " + to_string(p.second) + ")"; } template <typename A> string to_string(A v) { bool first = true; string res = "{"; for (const auto &x : v) { if (!first) { res += ", "; } first = false; res += to_string(x); } res += "}"; return res; } void debug_out() { cerr << endl; } template <typename Head, typename... Tail> void debug_out(Head H, Tail... T) { cerr << " " << to_string(H); debug_out(T...); } #ifdef LOCAL #define debug(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__) #else #define debug(...) 42 #endif /** * Author: Ulf Lundstrom * Date: 2009-02-26 * License: CC0 * Source: My head with inspiration from tinyKACTL * Description: Class to handle points in the plane. * T can be e.g. double or long long. (Avoid int.) * Status: Works fine, used a lot */ template <class T> int sgn(T x) { return (x > 0) - (x < 0); } template<class T> struct Point { typedef Point P; T x, y; explicit Point(T x=0, T y=0) : x(x), y(y) {} bool operator<(P p) const { return tie(x,y) < tie(p.x,p.y); } bool operator==(P p) const { return tie(x,y)==tie(p.x,p.y); } P operator+(P p) const { return P(x+p.x, y+p.y); } P operator-(P p) const { return P(x-p.x, y-p.y); } P operator*(T d) const { return P(x*d, y*d); } P operator/(T d) const { return P(x/d, y/d); } T dot(P p) const { return x*p.x + y*p.y; } T cross(P p) const { return x*p.y - y*p.x; } T cross(P a, P b) const { return (a-*this).cross(b-*this); } T dist2() const { return x*x + y*y; } double dist() const { return sqrt((double)dist2()); } // angle to x-axis in interval [-pi, pi] double angle() const { return atan2(y, x); } P unit() const { return *this/dist(); } // makes dist()=1 P perp() const { return P(-y, x); } // rotates +90 degrees P normal() const { return perp().unit(); } // returns point rotated 'a' radians ccw around the origin P rotate(double a) const { return P(x*cos(a)-y*sin(a),x*sin(a)+y*cos(a)); } friend ostream& operator<<(ostream& os, P p) { return os << "(" << p.x << "," << p.y << ")"; } }; typedef long double ld; ld angle(Point<ld> a, Point<ld> b) { return atan2(a.cross(b), a.dot(b)); } /** * Author: chilli * License: CC0 * Description: z[i] computes the length of the longest common prefix of s[i:] and s, * except z[0] = 0. (abacaba -> 0010301) * Time: O(n) * Status: stress-tested */ const ld eps = 1e-3 ; vi Z(const vector<ld>& S) { vi z(sz(S)); int l = -1, r = -1; rep(i,1,sz(S)) { z[i] = i >= r ? 0 : min(r - i, z[i - l]); while (i + z[i] < sz(S) && abs(S[i + z[i]] - S[z[i]]) <= eps) z[i]++; if (i + z[i] > r) l = i, r = i + z[i]; } return z; } signed main() { cin.tie(0)->sync_with_stdio(0); cin.exceptions(cin.failbit); // RTE if input wrong datatype int n,x; cin>>n>>x; map<int,int> cnt; cnt[0]=1; int sum=0,ans=0; for(int i=0;i<n;i++){ int a; cin>>a; sum+=a; cnt[sum]++; ans+=cnt[sum-x]; } cout<<ans; }
Test details
Test 1
Verdict: ACCEPTED
input |
---|
100 50 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
51 |
user output |
---|
51 |
Test 2
Verdict: ACCEPTED
input |
---|
100 1000000000 1000000000 1000000000 10000000... |
correct output |
---|
100 |
user output |
---|
100 |
Test 3
Verdict: WRONG ANSWER
input |
---|
100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ... |
correct output |
---|
5050 |
user output |
---|
5150 |
Test 4
Verdict: ACCEPTED
input |
---|
100 4 2 1 -3 2 -7 7 -2 6 9 -4 10 -6 ... |
correct output |
---|
53 |
user output |
---|
53 |
Test 5
Verdict: ACCEPTED
input |
---|
200000 100000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
100001 |
user output |
---|
100001 |
Test 6
Verdict: ACCEPTED
input |
---|
200000 1000000000 1000000000 1000000000 10000000... |
correct output |
---|
200000 |
user output |
---|
200000 |
Test 7
Verdict: WRONG ANSWER
input |
---|
200000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ... |
correct output |
---|
20000100000 |
user output |
---|
20000300000 |
Test 8
Verdict: ACCEPTED
input |
---|
200000 39 44 -62 -3 23 11 -68 42 69 -22 ... |
correct output |
---|
903601 |
user output |
---|
903601 |
Test 9
Verdict: ACCEPTED
input |
---|
131072 199999 199999 199999 199999 199999 19... |
correct output |
---|
131072 |
user output |
---|
131072 |
Test 10
Verdict: ACCEPTED
input |
---|
131072 107897 107897 107897 107897 107897 10... |
correct output |
---|
131072 |
user output |
---|
131072 |
Test 11
Verdict: ACCEPTED
input |
---|
131072 126271 126271 126271 126271 126271 12... |
correct output |
---|
131072 |
user output |
---|
131072 |
Test 12
Verdict: ACCEPTED
input |
---|
200000 107897 107897 107897 107897 107897 10... |
correct output |
---|
199999 |
user output |
---|
199999 |
Test 13
Verdict: ACCEPTED
input |
---|
200000 100000 1056323 1056323 1056323 105632... |
correct output |
---|
0 |
user output |
---|
0 |
Test 14
Verdict: ACCEPTED
input |
---|
200000 100000 2144977 2144977 2144977 214497... |
correct output |
---|
0 |
user output |
---|
0 |
Test 15
Verdict: ACCEPTED
input |
---|
200000 100000 65536 65536 65536 65536 65536 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 16
Verdict: WRONG ANSWER
input |
---|
5 0 0 0 0 0 0 |
correct output |
---|
15 |
user output |
---|
20 |
Test 17
Verdict: ACCEPTED
input |
---|
20 536870912 268435456 268435456 268435456 ... |
correct output |
---|
19 |
user output |
---|
19 |
Test 18
Verdict: ACCEPTED
input |
---|
131072 136607 136607 136607 136607 136607 13... |
correct output |
---|
131072 |
user output |
---|
131072 |
Test 19
Verdict: ACCEPTED
input |
---|
200000 562841 562841 562841 562841 562841 56... |
correct output |
---|
200000 |
user output |
---|
200000 |
Test 20
Verdict: ACCEPTED
input |
---|
107897 107897 107897 107897 107897 107897 10... |
correct output |
---|
107897 |
user output |
---|
107897 |
Test 21
Verdict: ACCEPTED
input |
---|
200000 202409 101204 101205 101204 101205 10... |
correct output |
---|
199998 |
user output |
---|
199998 |
Test 22
Verdict: ACCEPTED
input |
---|
200000 202409 138630 138631 138630 138631 13... |
correct output |
---|
0 |
user output |
---|
0 |
Test 23
Verdict: ACCEPTED
input |
---|
200000 10273 410857 410857 410857 410857 41... |
correct output |
---|
0 |
user output |
---|
0 |
Test 24
Verdict: ACCEPTED
input |
---|
5 2 1 -1 1 -1 2 |
correct output |
---|
3 |
user output |
---|
3 |
Test 25
Verdict: ACCEPTED
input |
---|
200000 1 1048577 -1048570 29 145 725 36... |
correct output |
---|
104671 |
user output |
---|
104671 |
Test 26
Verdict: ACCEPTED
input |
---|
200000 1 1048577 -1048571 25 125 625 31... |
correct output |
---|
104859 |
user output |
---|
104859 |
Test 27
Verdict: WRONG ANSWER
input |
---|
200000 0 5334500 -3502392 3421268 -2064... |
correct output |
---|
6341575890 |
user output |
---|
6341775890 |
Test 28
Verdict: WRONG ANSWER
input |
---|
200000 0 172933 172933 172933 172933 17... |
correct output |
---|
0 |
user output |
---|
200000 |