• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 15:30
CEST 21:30
KST 04:30
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
[ASL22] Ro16 Preview: Holy Diver3[ASL22] Ro16 Preview: Rough Waters10[ASL22] Ro24 Preview: Siren's Call8[ASL22] Ro24 Preview: Summer's End9Serral wins HomeStory Cup 2915
Community News
StarCraft open world shooter announced at BlizzCon74Weekly Cups (Aug 30-Sep 7): herO thrives amid growing schism10Official StarCraft website teases new content ahead of BlizzCon?173Stellar Fest TWO the Moon (Dec 16-20)9Weekly Cups (August 24-30): Patches' balance mod takes over3
StarCraft 2
General
StarCraft open world shooter announced at BlizzCon How do you feel about the StarCraft shooter announcement at BlizzCon 2026? Balance hotfix patch 5.0.16b (July 16) Team Liquid Map Contest #22: Results and Winners Weekly Cups (Aug 30-Sep 7): herO thrives amid growing schism
Tourneys
RSL Revival: Season 6 - Qualifiers and Main Event RSL goes to London! 2026 Offline Finals Nov 21-22 Sparkling Tuna Cup - Weekly Open Tournament KSL Week #92 IntoTheTV X SOOP SC2 League : Weekly & Monthly
Strategy
[G] Having the right mentality to improve
Custom Maps
Nexus Wars 2021 GUIDE [M] (2) Industrial Park
External Content
Mutation # 543 Enhanced Defenses The PondCast: SC2 News & Results Mutation # 542 The Ascended Mutation # 541 Binary Choice
Brood War
General
[ASL22] Ro16 Preview: Holy Diver Official StarCraft website teases new content ahead of BlizzCon? ASL22 General Discussion BGH Auto Balance -> http://bghmmr.eu/ Broodwar Prediction Market
Tourneys
[ASL22] Ro16 Group C [ASL22] Ro16 Group B [ASL22] Ro16 Group A Escore Tournament - Season 3
Strategy
Replay Review Process - What do you do? Simple Questions, Simple Answers Odyssey Mineral Stack Saturation Game Theory for Starcraft
Other Games
General Games
Diablo IV Nintendo Switch Thread EVE Corporation [Maplestory Hardcore] Let's Play~!! General RTS Discussion Thread
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
[TL LoL EUW IHs] Teemo shall perish TSM pausing esports and CLG Dead
Heroes of the Storm
Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
TL Mafia Community Thread
Community
General
US Politics Mega-thread UK Politics Mega-thread Things Aren’t Peaceful in Palestine Trading/Investing Thread Russo-Ukrainian War Thread
Fan Clubs
MarineLorD Fan Club The Creator Fan Club The ShoWTimE Fan Club
Media & Entertainment
[Manga] One Piece Movie Discussion! Diablo Animated Series on Netflix
Sports
Football (Soccer) Thread TeamLiquid Health and Fitness Initiative For 2023 MLB/Baseball 2023
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Northern Ireland Global Starcraft
Blogs
Virtual Romance, Real-Life C…
TrAiDoS
Regacy Esports:Our Goa…
regacyesports
Dreaming of BW patches (mod…
c3rberUs
LOCKPICKING NOOB
LUCKY_NOOB
Customize Sidebar...

Website Feedback

Closed Threads



Active: 9212 users

The Big Programming Thread - Page 472

Forum Index > General Forum
Post a Reply
Prev 1 470 471 472 473 474 1032 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
April 28 2014 18:08 GMT
#9421
I thought I understood the challenge but then he mentioned minimum spanning trees, and I just noped out of that because I assumed he thought a while about simple solutions.
I think in our modern age technology has evolved to become more addictive. The things that don't give us pleasure aren't used as much. Work was never meant to be fun, but doing it makes us happier in the long run.
Manit0u
Profile Blog Joined August 2004
Poland17843 Posts
Last Edited: 2014-04-28 18:54:41
April 28 2014 18:54 GMT
#9422
On April 28 2014 08:34 cilinder007 wrote:
I have a programming challenge I can't quite seem to get the right awnser to, it goes like this

You were hired by a director of a small company with N employees to set up the network between the employees who have to send a weekly report to each of the other employees as a different part or their report is important for each employee, depending on the importance of their work they have to send a report Ki number of times per week
You have measured the time it takes for a message to be delivered between each 2 employees
Due to budget cuts the network will only have N-1 connections between they employees and because of the simplicity of the technology you are using when one message is sent the entire network has to wait for it to be delivered (only 1 message at a time)
What you get is N -the number of employees, you get Ki which is the muber of times a report from worker i is to be sent per week, Tij which indicates the time a message traveles from employee i to employee j
1<=N<=13
0<=Ki<=10^3
0<=Tij<=10^3
Tij = Tji, Tii = 0

At first I assumed the most optimal network would be a star (tree) and all it would take is to determine which node to be in the center and since we were limited to an N at most 13 I decided to just brute force it and try them all, but that attempt failed as apparently this was not the most optimal network configuration (or so the test cases showed me)
Then I thought maybe this would be solved by finding a minimum spanning tree or each full graph made from the employees, but since there are multiple minimum spanning trees and not all of them are equaly good for this problem that failed on paper already

I am currently a bit out of ideas, so a hint as to what direction I should be looking towards would be great


Set up a google drive feature or an svn for the emplyees. Sorry, my mind is blank after 9 hours of trying to fix errors in the project and resolving commit issues between 4 people who decided to work on the same exact thing all day long.
Time is precious. Waste it wisely.
RoyGBiv_13
Profile Blog Joined August 2010
United States1275 Posts
April 28 2014 18:59 GMT
#9423
On April 29 2014 02:33 spinesheath wrote:
If my resulting graph has no edge from employee a to employee b, but edges from a to c and from c to b, is the time from a to b defined as Tab or as Tac + Tcb?

Our graph is always a tree. It has to be connected or else one employee couldn't message everyone else. It has N nodes and N-1 edges. Therefore it is a tree, and we are most likely looking for a Minimum Spanning Tree by some weight function we don't know yet.



Assuming the graph is guaranteed to be a tree (I'd be careful about this assumption), then you can get away with just using a depth first/breadth first search instead of generating a minimal spanning tree. Let me know if you need an psuedocode example of these algorithms.

Note that a graph that has a cycle in it cannot be a tree.
Any sufficiently advanced technology is indistinguishable from magic
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
April 28 2014 19:57 GMT
#9424
On April 29 2014 03:59 RoyGBiv_13 wrote:
Show nested quote +
On April 29 2014 02:33 spinesheath wrote:
If my resulting graph has no edge from employee a to employee b, but edges from a to c and from c to b, is the time from a to b defined as Tab or as Tac + Tcb?

Our graph is always a tree. It has to be connected or else one employee couldn't message everyone else. It has N nodes and N-1 edges. Therefore it is a tree, and we are most likely looking for a Minimum Spanning Tree by some weight function we don't know yet.



Assuming the graph is guaranteed to be a tree (I'd be careful about this assumption), then you can get away with just using a depth first/breadth first search instead of generating a minimal spanning tree. Let me know if you need an psuedocode example of these algorithms.

Note that a graph that has a cycle in it cannot be a tree.

A connected graph with N nodes and N-1 edges is a tree. By definition. Or by colloray if you use another definition.
And what do you intend to achieve with a search here?
If you have a good reason to disagree with the above, please tell me. Thank you.
RoyGBiv_13
Profile Blog Joined August 2010
United States1275 Posts
Last Edited: 2014-04-28 22:49:29
April 28 2014 22:30 GMT
#9425
On April 29 2014 04:57 spinesheath wrote:
Show nested quote +
On April 29 2014 03:59 RoyGBiv_13 wrote:
On April 29 2014 02:33 spinesheath wrote:
If my resulting graph has no edge from employee a to employee b, but edges from a to c and from c to b, is the time from a to b defined as Tab or as Tac + Tcb?

Our graph is always a tree. It has to be connected or else one employee couldn't message everyone else. It has N nodes and N-1 edges. Therefore it is a tree, and we are most likely looking for a Minimum Spanning Tree by some weight function we don't know yet.



Assuming the graph is guaranteed to be a tree (I'd be careful about this assumption), then you can get away with just using a depth first/breadth first search instead of generating a minimal spanning tree. Let me know if you need an psuedocode example of these algorithms.

Note that a graph that has a cycle in it cannot be a tree.

A connected graph with N nodes and N-1 edges is a tree. By definition. Or by colloray if you use another definition.
And what do you intend to achieve with a search here?


Ah, I misread the problem statement... I was thinking you had to generate the time between employees within the network, not generate the network....
"You have measured the time it takes for a message to be delivered between each 2 employees"

+ Show Spoiler [really bad solution] +

The algorithm you're looking for is a greedy algorithm, where the metric you're optimizing is based on the distance between nodes and the frequency which they send out messages.

First, find a way to measure the metric:
Start at node A and search (using a depth first search) until you get to B, add up lengths between nodes. Repeat this process for every node. Throw this data into a function that takes into account Ki and whatnot in order to determine a score based on distance between nodes and frequency they send out reports.

Now, search the problem space:
There are 13 nodes at most, and they can each have up to 12 children. A brute force would cycle between each node and number of children it has as the head, then iterate over each of its children, adding up to N children and removing them, scoring every possibility.
You can optimize this by adding in a projected score heuristic. If a projected score is already worse than the current best score, then you don't need to follow that branch any further, as it will just get worse as you add in more nodes.
Additional optimizations could include paying attention to the symmetry of the problem space in order to rule out half or more of the potential solutions.

Any sufficiently advanced technology is indistinguishable from magic
Ben...
Profile Joined January 2011
Canada3485 Posts
Last Edited: 2014-04-29 04:29:45
April 29 2014 04:21 GMT
#9426
On April 29 2014 07:30 RoyGBiv_13 wrote:
Show nested quote +
On April 29 2014 04:57 spinesheath wrote:
On April 29 2014 03:59 RoyGBiv_13 wrote:
On April 29 2014 02:33 spinesheath wrote:
If my resulting graph has no edge from employee a to employee b, but edges from a to c and from c to b, is the time from a to b defined as Tab or as Tac + Tcb?

Our graph is always a tree. It has to be connected or else one employee couldn't message everyone else. It has N nodes and N-1 edges. Therefore it is a tree, and we are most likely looking for a Minimum Spanning Tree by some weight function we don't know yet.



Assuming the graph is guaranteed to be a tree (I'd be careful about this assumption), then you can get away with just using a depth first/breadth first search instead of generating a minimal spanning tree. Let me know if you need an psuedocode example of these algorithms.

Note that a graph that has a cycle in it cannot be a tree.

A connected graph with N nodes and N-1 edges is a tree. By definition. Or by colloray if you use another definition.
And what do you intend to achieve with a search here?


Ah, I misread the problem statement... I was thinking you had to generate the time between employees within the network, not generate the network....
"You have measured the time it takes for a message to be delivered between each 2 employees"

+ Show Spoiler [really bad solution] +

The algorithm you're looking for is a greedy algorithm, where the metric you're optimizing is based on the distance between nodes and the frequency which they send out messages.

First, find a way to measure the metric:
Start at node A and search (using a depth first search) until you get to B, add up lengths between nodes. Repeat this process for every node. Throw this data into a function that takes into account Ki and whatnot in order to determine a score based on distance between nodes and frequency they send out reports.

Now, search the problem space:
There are 13 nodes at most, and they can each have up to 12 children. A brute force would cycle between each node and number of children it has as the head, then iterate over each of its children, adding up to N children and removing them, scoring every possibility.
You can optimize this by adding in a projected score heuristic. If a projected score is already worse than the current best score, then you don't need to follow that branch any further, as it will just get worse as you add in more nodes.
Additional optimizations could include paying attention to the symmetry of the problem space in order to rule out half or more of the potential solutions.


Sounds an awful lot like Djikstra's Algorithm for shortest path on a weighted graph (which is indeed a greedy algorithm, though Djikstra uses a weird pseudo-breadth first search because it looks at the weights of each connected edge to a given vertex, and moves to the vertex with which the connecting edge is the lowest weight if that vertex has not been visited yet). It finds the shortest path from a given node to each other node so long as there exists some path to that node. In this case, one could treat the time it takes to send a message between two connected employees/nodes/whatevertheyares as your edge weight, thus finding the shortest time.

Djikstra is really easy to implement if you use a pair of arrays to keep track of which nodes have been visited and the tentative total path weight between the starting node and the node being examined (alternatively, you can have a boolean field in your vertex that will state whether the vertex has been visited or not). By the time you hit the last unvisited node, you will have the minimal path from your starting node to every other connected node on the graph. You'll note that in the wiki article, they set the tentative distance between the start node and a given node to infinity. This is because the algorithm will only overwrite that tentative distance if it the new path distance is less than the one stored. This is how it always will result in minimal distances. The algorithm can be modified to give either the minimal path itself, or the minimal weight. If you have your implementation set up so that the weight is stored in each edge, you can easily get both.
"Cliiiiiiiiiiiiiiiiide" -Tastosis
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2014-04-29 15:58:09
April 29 2014 15:57 GMT
#9427
Is there software that analyses Java classes and then produces UML diagram? I think it would save a lot of time.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
Last Edited: 2014-04-30 16:00:51
April 29 2014 17:50 GMT
#9428
I screwed up on my assumption that each edge is used Sum Ki times. Take the graph
A -ab- B -bc- C -cd- D
then:
ab is used 3 * Ka + Kb + Kc + Kd times
bc is used 2 * Ka + 2 * Kb + 2 * Kc + 2 * Kd times
cd is used Ka + Kb + Kc + 3 * Kd times

that's because I have to use ab to go from A to B, from A to C and from A to D.
Now let's find the real algorithm.

If I pick any edge ab and seperate my set of nodes into 2 sets, one on a's side, called Sa and one on b's side called Sb, then the weight of ab is:
((Number of nodes in Sa) * (Sum Ki over all nodes in Sb) + (Number of nodes in Sb) * (Sum Ki over all nodes in Sa)) * Tab
If minimize over all possible splits Sa and Sb for each node and take the resulting weights for a greedy MST algorithm, will the result be optimal? I think it will, but I don't have a proof readily at hand.

The critical part is whether minimizing over all possible splits Sa and Sb actually produces the correct weight function. Could I split differently, take a slightly worse weight, and gain better results overall?

I messed up again, fixed the weight function. I also have to calculate the weight function and keep track of the split for the minimum weight, then calculate the weight function again but for each split separately...
If you have a good reason to disagree with the above, please tell me. Thank you.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
April 30 2014 22:16 GMT
#9429
On April 30 2014 00:57 darkness wrote:
Is there software that analyses Java classes and then produces UML diagram? I think it would save a lot of time.


Answer: UMLet
What do you guys do when you have too many classes (20+) that need to be displayed on a class diagram? Stuff gets really complex to look at.
Birdie
Profile Blog Joined August 2007
New Zealand4438 Posts
April 30 2014 22:38 GMT
#9430
Is UML actually useful in the real world? I'm sitting in a class for it right now and it seems like IT rubbish that is no practical use for a developer, and seems quite abstract and wasted. But I have no work experience in the real world and could be completely wrong.
Red classic | A butterfly dreamed he was Zhuangzi | 4.5k, heading to 5k as support!
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2014-04-30 23:20:19
April 30 2014 23:13 GMT
#9431
On May 01 2014 07:38 Birdie wrote:
Is UML actually useful in the real world? I'm sitting in a class for it right now and it seems like IT rubbish that is no practical use for a developer, and seems quite abstract and wasted. But I have no work experience in the real world and could be completely wrong.


I have no work experience, but I can tell you a few things. Some jobs require applicants to know UML. UML is still a good way to introduce you to what class is what and what is linked to what. Would you rather dive into code to find out? UML is summary to me. Then, Javadoc gives me more concrete description of what (methods, classes) does what. Finally, code itself to get yourself really updated.

Edit: One challenge I've experienced with UML is scalability. The more classes you have, the harder (at least for me) it gets.
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
May 01 2014 03:04 GMT
#9432
My previous place had a build system with a bunch of engineering behind it that generated UMLs of our business models automatically. It was nice, but we hardly ever used them as developers. It was useful for documentation and sometimes for quick glances at the models but really nothing practical.
There is no one like you in the universe.
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
Last Edited: 2014-05-01 10:11:15
May 01 2014 04:54 GMT
#9433
From my experience as an intern, I've seen UML diagrams but never used them.

I hear some people did like them for systems that got complicated though.
I think in our modern age technology has evolved to become more addictive. The things that don't give us pleasure aren't used as much. Work was never meant to be fun, but doing it makes us happier in the long run.
WolfintheSheep
Profile Joined June 2011
Canada14127 Posts
May 01 2014 05:43 GMT
#9434
Main point of UMLs and similar diagrams is for someone who is just stepping into a monstrous block of coding for the first time.

Well, I guess that's like all programming documentation. You don't do it for yourself, or the team that's been writing the code from Day 1. It's for everyone having to maintain it down the road.

I'm currently in a position where I'd kill for some UMLs or workflow diagrams.
Average means I'm better than half of you.
MichaelEU
Profile Joined February 2011
Netherlands816 Posts
May 01 2014 10:01 GMT
#9435
I'm a TA for a software testing course and in the lab students have to create tests for an existing codebase. UML is useful in explaining how the code is structured. For my part-time job I have to work on a code base that's 10 years old. I sure wish I had UML diagrams when I joined.

So yeah, I'd say it's mostly for people who join in later down the road.
世界を革命する力を!― znf: "Michael-oniichan ( *^▽^*)ノ✩キラ✩"
aksfjh
Profile Joined November 2010
United States4853 Posts
May 01 2014 13:59 GMT
#9436
On May 01 2014 14:43 WolfintheSheep wrote:
Main point of UMLs and similar diagrams is for someone who is just stepping into a monstrous block of coding for the first time.

Well, I guess that's like all programming documentation. You don't do it for yourself, or the team that's been writing the code from Day 1. It's for everyone having to maintain it down the road.

I'm currently in a position where I'd kill for some UMLs or workflow diagrams.

Workflow diagrams are much more useful. UML is stuck in this weird place where it's too detailed to be useful at a glance, but not detailed enough to use for somebody working on the system.
Frudgey
Profile Joined September 2012
Canada3367 Posts
Last Edited: 2014-05-01 14:32:40
May 01 2014 14:31 GMT
#9437
Hi all,

I'm currently in a Summer job that requires me to use C++. I'm going to be working on my laptop for the majority of the Summer but I don't have C++ on it. My question is do any of you know where I can get C++ and a compiler for it? And roughly how much will it cost?

I tried looking this up on the internet, but it was hard to get concrete answers. If anyone could provide me with links that would be much appreciated.

Also if this isn't the right place to ask then I apologize.

EDIT: I should probably mention that I'm using Windows 8 right now, if that helps at all.
It is better to die for The Emperor than live for yourself.
Scheme
Profile Blog Joined April 2011
United Kingdom210 Posts
Last Edited: 2014-05-01 14:41:40
May 01 2014 14:39 GMT
#9438
On May 01 2014 23:31 Frudgey wrote:
Hi all,

I'm currently in a Summer job that requires me to use C++. I'm going to be working on my laptop for the majority of the Summer but I don't have C++ on it. My question is do any of you know where I can get C++ and a compiler for it? And roughly how much will it cost?

I tried looking this up on the internet, but it was hard to get concrete answers. If anyone could provide me with links that would be much appreciated.

Also if this isn't the right place to ask then I apologize.

EDIT: I should probably mention that I'm using Windows 8 right now, if that helps at all.


You can download VIsual Studio professional 2013 for free if you are a student: https://www.dreamspark.com/

Otherwise Visual Studio express C++ for free as well. link

Hope that helps.

EDIT:
2013 not 2014

NihiLStarcraft
Profile Blog Joined January 2010
Denmark1413 Posts
Last Edited: 2014-05-01 14:45:56
May 01 2014 14:44 GMT
#9439
On May 01 2014 23:31 Frudgey wrote:
Hi all,

I'm currently in a Summer job that requires me to use C++. I'm going to be working on my laptop for the majority of the Summer but I don't have C++ on it. My question is do any of you know where I can get C++ and a compiler for it? And roughly how much will it cost?

I tried looking this up on the internet, but it was hard to get concrete answers. If anyone could provide me with links that would be much appreciated.

Also if this isn't the right place to ask then I apologize.

EDIT: I should probably mention that I'm using Windows 8 right now, if that helps at all.


You don't need to 'get' C++, it's not an interpreted language. All you need is a compiler to turn your source files into machine code which can then be executed by your computer! There's a bunch of free C++-compilers out there, since you are on Windows and seem to be very new to the language I would advice for the Microsoft Visual C++ Express IDE, since it comes with a compiler and it's easy to get started with.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
May 01 2014 15:56 GMT
#9440
if you are a student then you can probably hook yourself up with the real deal over at dreamspark.
conspired against by a confederacy of dunces.
Prev 1 470 471 472 473 474 1032 Next
Please log in or register to reply.
Live Events Refresh
BlizzCon
18:30
Blizzard Classic Cup 2026
IdrA vs MC
StarCraft2397
RotterdaM1090
ComeBackTV 774
TaKeTV 321
IndyStarCraft 253
EnkiAlexander 80
CosmosSc2 66
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RotterdaM 1110
IndyStarCraft 280
StarCraft: Brood War
Britney 20857
Calm 2864
Shuttle 1005
Artosis 618
Mini 177
firebathero 128
Dewaltoss 107
Sea.KH 41
Trap 24
Mong 22
[ Show more ]
sSak 19
CosmosSc2 0
League of Legends
goblin8
Counter-Strike
byalli1163
Super Smash Bros
C9.Mang0306
hungrybox273
Mew2King153
Chillindude17
Heroes of the Storm
Liquid`Hasu544
MindelVK15
Other Games
summit1g6818
Grubby5771
Liquid`RaSZi2370
fl0m964
Tasteless751
Mlord493
B2W.Neo435
mouzStarbuck306
Pyrionflax197
Hui .137
XaKoH 113
Organizations
Other Games
gamesdonequick2445
EGCTV1560
Heroes of the Storm
Heroes of the Storm650
StarCraft: Brood War
Afreeca ASL 543
[ Show 15 non-featured ]
StarCraft 2
• Berry_CruncH426
• Hupsaiya 47
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• Migwel
StarCraft: Brood War
• Azhi_Dahaki39
• blackmanpl 12
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• C_a_k_e 3202
• masondota21254
Other Games
• Shiphtur246
Upcoming Events
Afreeca Starleague
14h 31m
Light vs JyJ
Soulkey vs hero
WardiTV Weekly
15h 31m
Monday Night Weeklies
20h 31m
Afreeca Starleague
1d 14h
Snow vs Shinee
Shine vs EffOrt
GSL
1d 15h
PiGosaur Cup
2 days
The PondCast
2 days
Kung Fu Cup
2 days
Replay Cast
3 days
KCM Race Survival
3 days
[ Show More ]
IntoTheTV X SOOP
3 days
Replay Cast
4 days
IntoTheTV X SOOP
4 days
Replay Cast
5 days
GSL
5 days
Replay Cast
6 days
GSL
6 days
Shopify Rebellion Sundays
6 days
Spirit vs Mixu
Liquipedia Results

Completed

Acropolis #5 - TRS
PiG Sty Festival 8.0
Big Dog Cup 2026 Div 1

Ongoing

KCM Race Survival 2026 Season 3
K-JUNGMAN
ASL Season 22
Super Anchor Qualifying S3
CSL 2026 AUTUMN (S22)
Acropolis #5
Blizzard Classic Cup 2026
Blizzard Classic Cup 2026
Calamity Invitational
FISSURE Playground #3
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 2026

Upcoming

Acropolis #5 - GSA
Acropolis #5 - GSB
Acropolis #5 - GSC
SC4ALL II: Brood War
HSC XXX
Stellar Fest 2: Lunar Cup
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
RSL Offline Finals
PGL Major Singapore 2026
Stake Ranked Episode 6
BLAST Rivals Fall 2026
IEM Beijing 2026
Stake Ranked Episode 5
PGL Masters Bucharest 2026
1win Private Club #2
Thunderpick World Champ. '26
ESL Pro League Season 24
Stake Ranked Episode 4
1win Private Club #1
Logitech G Play Connect 2026
SL StarSeries Fall 2026
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2026 TLnet. All Rights Reserved.