#ifndef CPL_TEMPLATE
#define CPL_TEMPLATE
/*
Normie's Template v2.5
Changes:
Added warning against using pragmas on USACO.
*/
// Standard library in one include.
#include <bits/stdc++.h>
using namespace std;
// ordered_set library.
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
#define ordered_set(el) tree<el,null_type,less<el>,rb_tree_tag,tree_order_statistics_node_update>
// AtCoder library. (Comment out these two lines if you're not submitting in AtCoder.) (Or if you want to use it in other judges, run expander.py first.)
//#include <atcoder/all>
//using namespace atcoder;
//Pragmas (Comment out these three lines if you're submitting in szkopul or USACO.)
#pragma comment(linker, "/stack:200000000")
#pragma GCC optimize("Ofast,unroll-loops,tree-vectorize")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2,tune=native")
//File I/O.
#define FILE_IN "cseq.inp"
#define FILE_OUT "cseq.out"
#define ofile freopen(FILE_IN,"r",stdin);freopen(FILE_OUT,"w",stdout)
//Fast I/O.
#define fio ios::sync_with_stdio(0);cin.tie(0)
#define nfio cin.tie(0)
#define endl "\n"
//Order checking.
#define ord(a,b,c) ((a>=b)and(b>=c))
//min/max redefines, so i dont have to resolve annoying compile errors.
#define min(a,b) (((a)<(b))?(a):(b))
#define max(a,b) (((a)>(b))?(a):(b))
// Fast min/max assigns to use with AVX.
// Requires g++ 9.2.0.
template<typename T>
__attribute__((always_inline)) void chkmin(T& a, const T& b) {
a=(a<b)?a:b;
}
template<typename T>
__attribute__((always_inline)) void chkmax(T& a, const T& b) {
a=(a>b)?a:b;
}
//Constants.
#define MOD (ll(998244353))
#define MAX 300001
#define mag 320
const long double PI=3.14159265358979;
//Pairs and 3-pairs.
#define p1 first
#define p2 second.first
#define p3 second.second
#define fi first
#define se second
#define pii(element_type) pair<element_type,element_type>
#define piii(element_type) pair<element_type,pii(element_type)>
//Quick power of 2.
#define pow2(x) (ll(1)<<x)
//Typedefs.
#define bi BigInt
typedef long long ll;
typedef long double ld;
typedef short sh;
// Binpow and stuff
ll BOW(ll a, ll x, ll p)
{
if (!x) return 1;
ll res=BOW(a,x/2,p);
res*=res;
res%=p;
if (x%2) res*=a;
return res%p;
}
ll INV(ll a, ll p)
{
return BOW(a,p-2,p);
}
//---------END-------//
#endif
class Fraction {
public:
long long numerator;
long long denominator;
Fraction(long long n, long long d);
Fraction();
~Fraction();
Fraction operator+(const Fraction& f);
Fraction operator-(const Fraction& f);
Fraction operator*(const Fraction& f);
Fraction operator/(const Fraction& f);
Fraction operator+=(const Fraction& f);
Fraction operator++();
bool operator<(const Fraction& f);
bool operator>(const Fraction& f);
bool operator<=(const Fraction& f);
bool operator>=(const Fraction& f);
bool operator==(const Fraction& f);
operator double();
friend ostream &operator<<(ostream &output, const Fraction& f);
void simplify() {
// reduction();
fix_sign();
}
void fix_sign() {
if (denominator < 0) {
denominator = -denominator;
numerator = -numerator;
}
}
void reduction() {
long long common = __gcd(numerator, denominator);
numerator /= common;
denominator /= common;
}
long long gcd(long long x, long long y) {
return y == 0 ? x : gcd(y, x % y);
}
};
Fraction::Fraction(long long n, long long d) {
if (d == 0) throw invalid_argument("d");
numerator = n;
denominator = d;
simplify();
}
Fraction::Fraction() {
numerator = 0;
denominator = 1;
simplify();
}
Fraction::~Fraction() {}
Fraction Fraction::operator+(const Fraction& f) {
long long n = numerator * f.denominator + f.numerator * denominator;
long long d = denominator * f.denominator;
Fraction ff(n, d);
return ff;
}
Fraction Fraction::operator-(const Fraction& f) {
long long n = numerator * f.denominator - f.numerator * denominator;
long long d = denominator * f.denominator;
Fraction ff(n, d);
return ff;
}
Fraction Fraction::operator*(const Fraction& f) {
long long n = numerator * f.numerator;
long long d = denominator * f.denominator;
Fraction ff(n, d);
return ff;
}
Fraction Fraction::operator/(const Fraction& f) {
long long n = numerator * f.denominator;
long long d = denominator * f.numerator;
Fraction ff(n, d);
return ff;
}
Fraction Fraction::operator+=(const Fraction& f) {
numerator = numerator * f.denominator + f.numerator * denominator;
denominator = denominator * f.denominator;
simplify();
Fraction ff(numerator, denominator);
return ff;
}
Fraction Fraction::operator++() {
Fraction f(1, 1);
numerator = numerator * f.denominator + f.numerator * denominator;
denominator = denominator * f.denominator;
simplify();
Fraction ff(numerator, denominator);
return ff;
}
bool Fraction::operator<(const Fraction& f) {
long long n = numerator * f.denominator - f.numerator * denominator;
long long d = denominator * f.denominator;
Fraction ff(n, d);
return ff.numerator < 0;
}
bool Fraction::operator>(const Fraction& f) {
long long n = numerator * f.denominator - f.numerator * denominator;
long long d = denominator * f.denominator;
Fraction ff(n, d);
return ff.numerator > 0;
}
bool Fraction::operator<=(const Fraction& f) {
long long n = numerator * f.denominator - f.numerator * denominator;
long long d = denominator * f.denominator;
Fraction ff(n, d);
return ff.numerator <= 0;
}
bool Fraction::operator>=(const Fraction& f) {
long long n = numerator * f.denominator - f.numerator * denominator;
long long d = denominator * f.denominator;
Fraction ff(n, d);
return ff.numerator >= 0;
}
bool Fraction::operator==(const Fraction& f) {
long long n = numerator * f.denominator - f.numerator * denominator;
long long d = denominator * f.denominator;
Fraction ff(n, d);
return ff.denominator == 0;
}
Fraction::operator double() {
return (double)numerator / denominator;
}
ostream &operator<<(ostream &output, const Fraction& f) {
output << "" << f.numerator << " " << f.denominator << "";
return output;
}
bool operator<(const Fraction& g, const Fraction& f) {
long long n = g.numerator * f.denominator - f.numerator * g.denominator;
long long d = g.denominator * f.denominator;
Fraction ff(n, d);
return ff.numerator < 0;
}
int used[2001];
vector<ll> p;
ll n,m,i,j,k,t,t1,u,v,a,b;
ll w[2001][2001];
pair<ll,Fraction> lul[2001][2001];
int main()
{
fio;
cin>>n>>m;
for (i=0;i<n;i++) for (j=0;j<m;j++) {
cin>>w[i][j];
}
for (i=0;i<n;i++) {
u=0;
for (j=0;j<m;j++) u+=w[i][j];
ll raw=0;
ll frac=0;
ll balance=0;
for (t=1;t<=n;t++) {
balance+=u;
while(true) {
if (balance<=(w[i][raw]*n-frac)) {
frac+=balance;
balance=0;
lul[i][t]={raw,Fraction(frac,w[i][raw]*n)};
// cout<<lul[i][t]<<' ';
break;
} else {
balance=balance-(w[i][raw]*n-frac);
frac=0;
raw++;
}
}
}
// cout<<endl;
}
for (i=0;i<n;i++) {
pair<ll,Fraction> mn={m+1,Fraction{0,1}};
a=0;
for (j=0;j<n;j++) if (!used[j] && lul[j][i+1]<mn) {
mn=lul[j][i+1];
a=j;
}
if (i<n-1) cout<<mn.fi*mn.se.denominator+mn.se.numerator<<' '<<mn.se.denominator<<endl;
p.push_back(a);
used[a]=1;
}
for (auto g : p) cout<<g+1<<' ';
}
// if (i<n-1)
Compilation message
naan.cpp:23: warning: ignoring '#pragma comment ' [-Wunknown-pragmas]
23 | #pragma comment(linker, "/stack:200000000")
|
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
53 ms |
94268 KB |
Output is correct |
2 |
Correct |
58 ms |
94252 KB |
Output is correct |
3 |
Correct |
51 ms |
94276 KB |
Output is correct |
4 |
Correct |
52 ms |
94336 KB |
Output is correct |
5 |
Correct |
48 ms |
94276 KB |
Output is correct |
6 |
Correct |
49 ms |
94272 KB |
Output is correct |
7 |
Correct |
55 ms |
94480 KB |
Output is correct |
8 |
Correct |
50 ms |
94356 KB |
Output is correct |
9 |
Correct |
51 ms |
94236 KB |
Output is correct |
10 |
Correct |
51 ms |
94284 KB |
Output is correct |
11 |
Correct |
63 ms |
94364 KB |
Output is correct |
12 |
Correct |
51 ms |
94364 KB |
Output is correct |
13 |
Correct |
52 ms |
94276 KB |
Output is correct |
14 |
Correct |
53 ms |
94252 KB |
Output is correct |
15 |
Correct |
51 ms |
94376 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
52 ms |
94340 KB |
Output is correct |
2 |
Correct |
53 ms |
94280 KB |
Output is correct |
3 |
Correct |
51 ms |
94356 KB |
Output is correct |
4 |
Correct |
52 ms |
94404 KB |
Output is correct |
5 |
Correct |
53 ms |
94388 KB |
Output is correct |
6 |
Correct |
54 ms |
94368 KB |
Output is correct |
7 |
Correct |
51 ms |
94248 KB |
Output is correct |
8 |
Correct |
51 ms |
94352 KB |
Output is correct |
9 |
Correct |
50 ms |
94388 KB |
Output is correct |
10 |
Correct |
52 ms |
94404 KB |
Output is correct |
11 |
Correct |
49 ms |
94404 KB |
Output is correct |
12 |
Correct |
52 ms |
94240 KB |
Output is correct |
13 |
Correct |
57 ms |
94256 KB |
Output is correct |
14 |
Correct |
51 ms |
94312 KB |
Output is correct |
15 |
Correct |
51 ms |
94404 KB |
Output is correct |
16 |
Correct |
51 ms |
94408 KB |
Output is correct |
17 |
Correct |
52 ms |
94396 KB |
Output is correct |
18 |
Correct |
54 ms |
94404 KB |
Output is correct |
19 |
Correct |
51 ms |
94352 KB |
Output is correct |
20 |
Correct |
54 ms |
94376 KB |
Output is correct |
21 |
Correct |
53 ms |
94332 KB |
Output is correct |
22 |
Correct |
53 ms |
94404 KB |
Output is correct |
23 |
Correct |
51 ms |
94260 KB |
Output is correct |
24 |
Correct |
52 ms |
94376 KB |
Output is correct |
25 |
Correct |
57 ms |
94372 KB |
Output is correct |
26 |
Correct |
51 ms |
94244 KB |
Output is correct |
27 |
Correct |
53 ms |
94404 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
53 ms |
94268 KB |
Output is correct |
2 |
Correct |
58 ms |
94252 KB |
Output is correct |
3 |
Correct |
51 ms |
94276 KB |
Output is correct |
4 |
Correct |
52 ms |
94336 KB |
Output is correct |
5 |
Correct |
48 ms |
94276 KB |
Output is correct |
6 |
Correct |
49 ms |
94272 KB |
Output is correct |
7 |
Correct |
55 ms |
94480 KB |
Output is correct |
8 |
Correct |
50 ms |
94356 KB |
Output is correct |
9 |
Correct |
51 ms |
94236 KB |
Output is correct |
10 |
Correct |
51 ms |
94284 KB |
Output is correct |
11 |
Correct |
63 ms |
94364 KB |
Output is correct |
12 |
Correct |
51 ms |
94364 KB |
Output is correct |
13 |
Correct |
52 ms |
94276 KB |
Output is correct |
14 |
Correct |
53 ms |
94252 KB |
Output is correct |
15 |
Correct |
51 ms |
94376 KB |
Output is correct |
16 |
Correct |
52 ms |
94340 KB |
Output is correct |
17 |
Correct |
53 ms |
94280 KB |
Output is correct |
18 |
Correct |
51 ms |
94356 KB |
Output is correct |
19 |
Correct |
52 ms |
94404 KB |
Output is correct |
20 |
Correct |
53 ms |
94388 KB |
Output is correct |
21 |
Correct |
54 ms |
94368 KB |
Output is correct |
22 |
Correct |
51 ms |
94248 KB |
Output is correct |
23 |
Correct |
51 ms |
94352 KB |
Output is correct |
24 |
Correct |
50 ms |
94388 KB |
Output is correct |
25 |
Correct |
52 ms |
94404 KB |
Output is correct |
26 |
Correct |
49 ms |
94404 KB |
Output is correct |
27 |
Correct |
52 ms |
94240 KB |
Output is correct |
28 |
Correct |
57 ms |
94256 KB |
Output is correct |
29 |
Correct |
51 ms |
94312 KB |
Output is correct |
30 |
Correct |
51 ms |
94404 KB |
Output is correct |
31 |
Correct |
51 ms |
94408 KB |
Output is correct |
32 |
Correct |
52 ms |
94396 KB |
Output is correct |
33 |
Correct |
54 ms |
94404 KB |
Output is correct |
34 |
Correct |
51 ms |
94352 KB |
Output is correct |
35 |
Correct |
54 ms |
94376 KB |
Output is correct |
36 |
Correct |
53 ms |
94332 KB |
Output is correct |
37 |
Correct |
53 ms |
94404 KB |
Output is correct |
38 |
Correct |
51 ms |
94260 KB |
Output is correct |
39 |
Correct |
52 ms |
94376 KB |
Output is correct |
40 |
Correct |
57 ms |
94372 KB |
Output is correct |
41 |
Correct |
51 ms |
94244 KB |
Output is correct |
42 |
Correct |
53 ms |
94404 KB |
Output is correct |
43 |
Correct |
80 ms |
98652 KB |
Output is correct |
44 |
Correct |
292 ms |
113292 KB |
Output is correct |
45 |
Correct |
200 ms |
105132 KB |
Output is correct |
46 |
Correct |
70 ms |
96196 KB |
Output is correct |
47 |
Correct |
211 ms |
109348 KB |
Output is correct |
48 |
Correct |
159 ms |
108612 KB |
Output is correct |
49 |
Correct |
95 ms |
101712 KB |
Output is correct |
50 |
Correct |
298 ms |
122268 KB |
Output is correct |
51 |
Correct |
199 ms |
114368 KB |
Output is correct |
52 |
Correct |
353 ms |
128232 KB |
Output is correct |
53 |
Correct |
256 ms |
123668 KB |
Output is correct |
54 |
Correct |
51 ms |
94404 KB |
Output is correct |
55 |
Correct |
100 ms |
101508 KB |
Output is correct |
56 |
Correct |
242 ms |
118916 KB |
Output is correct |
57 |
Correct |
205 ms |
115636 KB |
Output is correct |
58 |
Correct |
251 ms |
120492 KB |
Output is correct |
59 |
Correct |
229 ms |
116024 KB |
Output is correct |
60 |
Correct |
505 ms |
147724 KB |
Output is correct |
61 |
Correct |
508 ms |
147748 KB |
Output is correct |
62 |
Correct |
544 ms |
147572 KB |
Output is correct |
63 |
Correct |
500 ms |
147772 KB |
Output is correct |
64 |
Correct |
517 ms |
147636 KB |
Output is correct |
65 |
Correct |
416 ms |
134604 KB |
Output is correct |
66 |
Correct |
420 ms |
134344 KB |
Output is correct |
67 |
Correct |
407 ms |
134356 KB |
Output is correct |
68 |
Correct |
220 ms |
118876 KB |
Output is correct |
69 |
Correct |
259 ms |
121492 KB |
Output is correct |
70 |
Correct |
239 ms |
121028 KB |
Output is correct |
71 |
Correct |
349 ms |
130256 KB |
Output is correct |