QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#554395#9246. Dominating PointMiniLongAC ✓592ms31620kbC++172.9kb2024-09-09 10:58:182024-11-22 18:42:43

Judging History

你现在查看的是最新测评结果

  • [2024-11-22 18:42:43]
  • 自动重测本题所有获得100分的提交记录
  • 测评结果:AC
  • 用时:592ms
  • 内存:31620kb
  • [2024-11-22 18:38:25]
  • hack成功,自动添加数据
  • (/hack/1238)
  • [2024-09-09 10:58:18]
  • 评测
  • 测评结果:100
  • 用时:452ms
  • 内存:31616kb
  • [2024-09-09 10:58:18]
  • 提交

answer

#include <bits/stdc++.h>
#define _rep(i, x, y) for(int i = x; i <= y; ++i)
#define _req(i, x, y) for(int i = x; i >= y; --i)
#define _rev(i, u) for(int i = head[u]; i; i = e[i].nxt)
#define pb push_back
#define fi first
#define se second
#define mst(f, i) memset(f, i, sizeof f)
using namespace std;
#ifdef ONLINE_JUDGE
#define debug(...) 0
#else
#define debug(...) fprintf(stderr, __VA_ARGS__), fflush(stderr)
#endif
typedef long long ll;
typedef pair<int, int> PII;
namespace fastio{
    char ibuf[50007],*p1 = ibuf, *p2 = ibuf;
    #ifdef ONLINE_JUDGE
    #define get() p1 == p2 && (p2 = (p1 = ibuf) + fread(ibuf, 1, 50007, stdin), p1 == p2) ? EOF : *p1++
    #else
    #define get() getchar()
    #endif
    template<typename T> inline void read(T &t){
        T x = 0, f = 1;
        char c = getchar();
        while(!isdigit(c)){
            if(c == '-') f = -f;
            c = getchar();
        }
        while(isdigit(c)) x = x * 10 + c - '0', c = getchar();
        t = x * f;
    }
    template<typename T, typename ... Args> inline void read(T &t, Args&... args){
        read(t);
        read(args...);
    }
    template<typename T> void write(T t){
        if(t < 0) putchar('-'), t = -t;
        if(t >= 10) write(t / 10);
        putchar(t % 10 + '0');
    }
    template<typename T, typename ... Args> void write(T t, Args... args){
        write(t), putchar(' '), write(args...);
    }
    template<typename T> void writeln(T t){
        write(t);
        puts("");
    }
    template<typename T> void writes(T t){
        write(t), putchar(' ');
    }
    #undef get
};
using namespace fastio;
#define multitest() int T; read(T); _rep(tCase, 1, T)
namespace Calculation{
    const ll mod = 998244353;
    ll ksm(ll p, ll h){ll base = p % mod, res = 1; while(h){if(h & 1ll) res = res * base % mod; base = base * base % mod, h >>= 1ll;} return res;}
    void dec(ll &x, ll y){x = ((x - y) % mod + mod) % mod;}
    void add(ll &x, ll y){x = (x + y) % mod;}
    void mul(ll &x, ll y){x = x * y % mod;}
    ll sub(ll x, ll y){return ((x - y) % mod + mod) % mod;}
    ll pls(ll x, ll y){return ((x + y) % mod + mod) % mod;}
    ll mult(ll x, ll y){return x * y % mod;}
}
using namespace Calculation;
const int N = 5005;
int n, a[N];
char ch[N][N];
bitset<N> st[N], cur;
mt19937 rnd(time(0));
int main(){
    read(n);
    _rep(i, 1, n){
        scanf("%s", ch[i] + 1);
        _rep(j, 1, n) st[i][j] = (int)(ch[i][j] - '0');
    }
    vector<int> v;
    _rep(i, 1, n) a[i] = i;
    shuffle(a + 1, a + 1 + n, rnd);
    _rep(i, 1, n){
        int u = a[i];
        cur = st[u];
        _rep(j, 1, n) if(ch[u][j] == '1'){
            cur |= st[j];
        }
        cur[u] = 0;
        if(cur.count() == n - 1) v.pb(u);
        if(v.size() == 3) break;
    }
    if(v.size() < 3) puts("NOT FOUND");
    else for(auto &i : v) writes(i);
    return 0;
}

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 5808kb

input:

6
011010
000101
010111
100001
010100
100010

output:

1 4 3 

result:

ok OK, Answer correct.

Test #2:

score: 0
Accepted
time: 0ms
memory: 6120kb

input:

3
011
001
000

output:

NOT FOUND

result:

ok OK, Answer correct.

Test #3:

score: 0
Accepted
time: 0ms
memory: 5792kb

input:

3
010
001
100

output:

2 3 1 

result:

ok OK, Answer correct.

Test #4:

score: 0
Accepted
time: 137ms
memory: 31264kb

input:

4994
0100001010011001010101110010101000111101111100100001110010000111100000000100110100101000001010100000010010010110110110111010010010100110100000110110111001010111010111010111011001000101001000010001010111110000000100001100000111100011001010010111011100111010101110011000010111101011111110001111110...

output:

4365 4250 2720 

result:

ok OK, Answer correct.

Test #5:

score: 0
Accepted
time: 147ms
memory: 31568kb

input:

4994
0000000110000010100001001010100101010001000000011001110000111011100010100100001001011100000101100000100100001101101101010010110011101100101001100101110010001111110111001101000110111001010011101001010101000000111101101111001011111011000001110010000000110101010010010100100101111111001000111111011...

output:

4365 4250 2720 

result:

ok OK, Answer correct.

Test #6:

score: 0
Accepted
time: 147ms
memory: 31336kb

input:

4995
0010100011010011000010101100100000011100110100010101010101000001011110100010001001011001100001111100011010001110011101111001110001000000101010001000010000010001011010010001100001010111011111011011110110000101001000000100000000000010111010101111111100001010001000000001001110000110011001111001111...

output:

996 1950 2263 

result:

ok OK, Answer correct.

Test #7:

score: 0
Accepted
time: 147ms
memory: 31600kb

input:

4998
0011100111111001011100001111010010000111001110101001001011010111100010001110000001000010011011011110001110101111010011000101001101001000100110111110001001100111111000010101010101000110011100011001010110111110000100000010000101001000100011000010101111101101000000101010100111010101111101111100010...

output:

3700 1910 2795 

result:

ok OK, Answer correct.

Test #8:

score: 0
Accepted
time: 136ms
memory: 31556kb

input:

4994
0010111010011101101110001111100011010010010000101101110110110000100010000101011100000001011100010001000011010101011111100011010000010110000011110010011000101011100011110110011101110000101100111110000110100111001101000100011001001001100001101110001100111011100111001011001011010111111001001000010...

output:

3700 1910 2795 

result:

ok OK, Answer correct.

Test #9:

score: 0
Accepted
time: 1ms
memory: 5812kb

input:

1
0

output:

NOT FOUND

result:

ok OK, Answer correct.

Test #10:

score: 0
Accepted
time: 1ms
memory: 5856kb

input:

2
01
00

output:

NOT FOUND

result:

ok OK, Answer correct.

Test #11:

score: 0
Accepted
time: 452ms
memory: 31260kb

input:

4998
0101101111101110111110111111111111111101111111010110100111111101110101111101111110101111011111100010111011110100111111111101011101101100110111101110110101101110111011001111101011111101111001111101011111100110111110010011010111101111011010110101011111101011101110111111101101011111010010110101111...

output:

2793 1411 1681 

result:

ok OK, Answer correct.

Test #12:

score: 0
Accepted
time: 322ms
memory: 31348kb

input:

4998
0000001000000000010000100001001010101010000010010100000100000010100000100000100010011101010000000010000101101001001101100010100000000000010011010110000001011000000000010011000000100100010000000000000100110001010110010111000010000001100110110000100010001001100010001000010000011110001011000000100...

output:

4716 2307 685 

result:

ok OK, Answer correct.

Test #13:

score: 0
Accepted
time: 471ms
memory: 31276kb

input:

4998
0010101101011111101011000011111010001110000110101111101010010010111111010111101100001111110111010111000111111011111011110011111101010001111000000101110101000111111100100000011000010011110101010100011000000010100011011011000101101010010100110000000101001000111010101010001110101011011001100011100...

output:

1529 3187 2253 

result:

ok OK, Answer correct.

Test #14:

score: 0
Accepted
time: 592ms
memory: 31620kb

input:

5000
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...

output:

5000 1 4999 

result:

ok OK, Answer correct.

Extra Test:

score: 0
Extra Test Passed